本机闪屏图像不适用于颤振(Android)

时间:2021-04-03 09:10:07

标签: flutter

所以我试图在我的 flutter 应用程序中显示自定义启动画面图像。但由于某种原因,背景颜色和自定义图像也没有显示

我正在编辑 app/src/main/res/drawable 的路径

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/white" />

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

enter image description here

enter image description here

无论我尝试多少次都不会改变,我是一个新手,任何指导都会非常有帮助

1 个答案:

答案 0 :(得分:0)

你应该试试这个

<item
        android:height="200dp"
        android:drawable="@drawable/splash"
        android:gravity="center" />

这对我有用。