我正在使用ImageView来显示图片。但是,对于某些图片,虽然我已将其设置为wrap_content,但ImageView的边界比图片大。例如,
这是我的xml。
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView"
android:src="@drawable/image_16"
android:layout_centerInParent="true" />
如何确保边界与图像大小相同?
答案 0 :(得分:0)
将其添加到ImageView xml标记
android:scaleType="centerCrop"
这将确保图像在没有拉伸的情况下获得尺寸