首页 > 解决方案 > Android launch_background 适合图像的宽度

问题描述

我正在尝试将启动屏幕图像添加到我的应用程序。

这是我的launch_background.xml

<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@android:color/black" />

    <!-- You can insert your own image assets here -->
    <item>
        <bitmap
            android:gravity="center"
            android:scaleType="fitCenter"
            android:src="@drawable/myAppIcon" />
    </item>
</layer-list>

现在图像太大了,只适合设备的高度。它需要适合宽度,因此它不会延伸到屏幕之外。

我试着添加这个:

android:scaleType="fitCenter"

如何缩放图像使其适合屏幕宽度?

提前致谢!

标签: androidflutter

解决方案


推荐阅读