我有一个
ImageView,其高度和宽度设置为“fill_parent”,相对布局具有相同的值set.Set Image scaleType =“fitXY”
这里的XML布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent"> <ImageView android:id="@+id/imageView1" android:layout_width="fill_parent" android:layout_height="fill_parent" android:scaleType="fitXY" android:src="@drawable/background_image" /> </RelativeLayout>
适合宽度和高度,但图像被拉伸.
解决方法
这就是适合XX应该做的事情.如果您不想裁剪图像,可以尝试使用centerInside;如果要填充所有空间(并裁剪图像),可以尝试使用centerCrop.
Here是一个很好的列表,其中有一些示例可以更好地理解所有scaleTypes.