我使用位图作为活动的背景。自定义背景的代码是:
<item>
<bitmap android:src="@drawable/fog"
android:layout_width="match_parent"
android:adjustViewBounds="true"
/>
</item>
然而,它位于中间并且不占据整个屏幕空间。 如何填充所有可用空间? 我尝试将宽度和高度设置为fill_parent。
由于
答案 0 :(得分:1)
尝试添加:
android:layout_width="match_parent"
android:layout_height="match_parent"
答案 1 :(得分:1)
我同意@androidz的帖子。为避免失真,您可以使用setAdjustViewBounds函数(请参阅here)。
答案 2 :(得分:0)
android:scaleType =“fitXY”是我用来填充图像视图的,我从来没有将位图作为项目,也是裁剪的那些