我有一个带有白色背景和 1dp 填充的 Imageview 集,这会产生类似边框的效果,这是想要的结果。
现在,如果我将 scaleType 设置为 centerCrop,它会忽略顶部和底部的填充。
所以我仍然在左侧和右侧有我的边框,但在顶部和底部没有。
任何有想法阻止这种情况发生的人?或者另一种在图像周围创建边框的快速方法。我将它用于我的自定义网格视图
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="#FFFFFF"
android:contentDescription="@string/test"
android:padding="1dp"
android:src="@drawable/some_photo"
android:scaleType="centerCrop" />