扩展Android drawable以填满整个屏幕

时间:2015-02-20 09:16:15

标签: android android-layout

有一个图像集作为活动的背景。我想缩放图像,以便它总是填充整个屏幕,就像在示例中没有过多的缩放。如何实现呢?

enter image description here

1 个答案:

答案 0 :(得分:1)

试试这个

<ImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="@drawable/nSx3W"
    android:scaleType="centerCrop"/>

Result