在开发中发现,listview加载网络图片时,发现item布局中的ImageView上下留白
解决:
在ImageView的属性中,设置下面的两个属性
android:adjustViewBounds="true"
android:scaleType="fitStart"
上面的属性要同时使用才有效果
<ImaveView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="fitStart"
>
本文探讨了在开发中遇到ListView加载网络图片时出现Item布局中ImageView上下留白的问题,并提供了通过设置ImageView的android:adjustViewBounds和android:scaleType属性来解决此问题的方法。

1531

被折叠的 条评论
为什么被折叠?



