打开延迟主要是原本是白屏现在把白屏去掉了,应该换上启动页的图片让app感觉起来启动很快没有延迟
在style文件里面把SplashTheme改成下面这样,android:windowBackground 属性添加自己的启动页图片即可
<!--SplashActivity Theme-->
<style name="SplashTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowNoTitle">true</item>
<item name="android:windowTranslucentNavigation">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowBackground">@mipmap/welcomewps</item>
<item name="android:windowFullscreen">true</item>
</style>
网友评论