在imageview中拉伸图像以适合xml中的屏幕

时间:2015-06-17 10:52:09

标签: android xml imageview

我有drawable图像,需要作为背景。它需要伸展才能填满屏幕.. 我知道如何使用java代码全屏展开图像..但是在XML中它如何才能做到这一点。

4 个答案:

答案 0 :(得分:12)

android:scaleType="fitXY"会拉伸图片以适合ImageView

的完整尺寸

答案 1 :(得分:4)

尝试使用此属性:

android:scaleType="fitXY"

Here您可以找到其他常量值来调整大小。

答案 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;。这样,图像就不会伸展出原始比例。