Splashscreen图像全尺寸纵横比

时间:2018-03-15 18:06:19

标签: android android-layout

我将图像设置为全宽和全高,并且具有正确的宽高比。我有这段代码,如果有可能,现在不解决它。

谢谢

<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>

1 个答案:

答案 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会显示背景图片(不要忘记将其替换为您自己的图片),其余选项会生成完整尺寸的背景。