Android冷启动秒开虚拟键适配
2019-11-12 本文已影响0人
有点不一样呢
冷启动秒开
目前基本上为了看到应用秒开的效果,我们都会在启动页的主题设置logo的背景图,如下这样:
<style name="theme_splash" parent="theme_fullScreen">
<item name="android:windowBackground">@drawable/layer_splash_space</item>
</style>
这怎么能忍,其实解决这个问题很简单,像这样:
<style name="theme_splash" parent="theme_fullScreen">
<item name="android:background">@drawable/layer_splash_space</item>
</style>
将android:windowBackground改为android:background就可以啦,不知道这两个属性含义请自行google