安卓制作瞬间响应的splash启动页

时间:2021-10-22 15:56:43

安卓制作瞬间响应的splash启动页


application和activity中的oncreate都进行了优化,基本没有耗时操作,但是启动应用之后还是会闪现一下白色背景,然后才会进入splash界面,像qq这些客户端,都是瞬间响应splash页面。差别在哪里呢?

其实就算onCreate什么都不做,任然会闪一下白屏,因为初始化解析界面时需要一定时间,解决办法是自定义theme

`自定义代码如下`

<style name="AppSplash" parent="android:theme">
<item name="android:windowBackground">...</item>
<item name="android:windowNoTiltle">true</item>
</style>

最后在mainfest中应用此主题就好了

End