第一步:自定义style
<style name="AppTheme.SplashTheme" parent="AppTheme">
<item name="android:windowBackground">@mipmap/bg_splash</item>
<item name="android:windowFullscreen">true</item>
</style>
第二步:将启动页的theme设置为自定义的style
<activity
android:name=".mvp.ui.activity.SplashActivity"
android:theme="@style/AppTheme.SplashTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
笔记:
1.设置style完毕后,将layout的background设置一个非透明的颜色,可以看到android:windowBackground闪屏的效果
参考链接:
Android APP启动白屏优化
Android APP应用启动页白屏(StartingWindow)优化
Android开发之启动页与广告页
来源:CSDN
作者:csdn1225987336
链接:https://blog.csdn.net/csdn1225987336/article/details/103489267