ImageView宽度充满屏幕,高度根据图片比例拉伸
2018-11-29 本文已影响11人
风雪守候
在Android的XML布局中使用ImageView,然后宽度match_parent,这个时候需要保持图片的高宽比不变,(宽高比变化会使图片变形)
方法:
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="fitXY"
android:adjustViewBounds="true"/>