在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"/>
网友评论