我有drawable图像,需要作为背景。它需要伸展才能填满屏幕.. 我知道如何使用java代码全屏展开图像..但是在XML中它如何才能做到这一点。
答案 0 :(得分:12)
android:scaleType="fitXY"
会拉伸图片以适合ImageView
答案 1 :(得分:4)
答案 2 :(得分:4)
尝试像这样实施您的ImageView,并将 ic_launcher 更改为您要添加的自己的图片名称。
<ImageView
android:id="@+id/mImageView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitXY"
android:src="@drawable/ic_launcher" />
希望这会有所帮助。感谢
答案 3 :(得分:0)
我更喜欢使用scaleType =&#34; centerCrop&#34;。这样,图像就不会伸展出原始比例。