ImageView边界失控

时间:2016-04-06 15:40:51

标签: android imageview

我正在使用ImageView来显示图片。但是,对于某些图片,虽然我已将其设置为wrap_content,但ImageView的边界比图片大。例如,

enter image description here

这是我的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" />

如何确保边界与图像大小相同?

1 个答案:

答案 0 :(得分:0)

将其添加到ImageView xml标记

   android:scaleType="centerCrop"

这将确保图像在没有拉伸的情况下获得尺寸