我使用位图作为活动的背景。自定义背景的代码是:
<item>
<bitmap android:src="@drawable/fog"
android:layout_width="match_parent"
android:adjustViewBounds="true"
/>
</item>
然而,它位于中间,并没有占据整个屏幕空间。我怎样才能让它填满所有可用空间?我尝试将宽度和高度设置为fill_parent。
谢谢
我使用位图作为活动的背景。自定义背景的代码是:
<item>
<bitmap android:src="@drawable/fog"
android:layout_width="match_parent"
android:adjustViewBounds="true"
/>
</item>
然而,它位于中间,并没有占据整个屏幕空间。我怎样才能让它填满所有可用空间?我尝试将宽度和高度设置为fill_parent。
谢谢
我同意@androidz 的帖子。为避免失真,您可以使用 setAdjustViewBounds 函数(参见此处)。
尝试添加:
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY" 是我用来填充图像视图的,我从来没有位图作为项目,也有裁剪的