我将图像设置为全宽和全高,并且具有正确的宽高比。我有这段代码,如果有可能,现在不解决它。
谢谢
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" android:gravity="fill">
<item>
<bitmap android:gravity="center|fill_vertical" android:src="@drawable/background" />
</item>
</layer-list>
答案 0 :(得分:0)
为什么使用图层列表?您可以使用RelativeLayout
并在RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/your_background_image"
android:scaleType="centerCrop"
此android:background
会显示背景图片(不要忘记将其替换为您自己的图片),其余选项会生成完整尺寸的背景。