我有一个 ImageView,其高度和宽度设置为“fill_parent”,其相对布局设置了相同的值。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>
适合宽度和高度,但图像被拉伸。