listview Recycleview中imageview图片显示不全

时间:2021-06-24 19:41:56

listview Recycleview中imageview图片显示不全

在listview Recycleview中imageview图片的大小不确定是会造成图片显示不全:

只需要在imageview中添加属性android:adjustViewBounds="true"
这个属性的作用是保持图片的缩放比例不变 以保持图片不会被拉伸变形

<ImageView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorAccent"
android:adjustViewBounds="true"/>