Flutter 安卓添加启动图 设置无效

1.问题

参照网上的教程 按照launch_background.xml 里注释的格式修改了的内容之后
发现启动页设置无效

Flutter 安卓添加启动图 设置无效_第1张图片


解决

成功的实现方案是使用下面一种设置方式

Flutter 安卓添加启动图 设置无效_第2张图片
注:将splash.png放入mipmap文件夹中 也可以使用同一分辨率的图片

AndroidManifest.xml 文件配置参考

Flutter 安卓添加启动图 设置无效_第3张图片

            android:name=".MainActivity"
            android:launchMode="singleTop"
            android:theme="@style/LaunchTheme"
            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
            android:hardwareAccelerated="true"
            android:windowSoftInputMode="adjustResize">
            
            
            
                
                
            
        
app/main/values/styles.xml 文件配置参考

Flutter 安卓添加启动图 设置无效_第4张图片



    

你可能感兴趣的:(Flutter)