1分钟教你App点击秒开技能
1分钟教你App点击秒开技能
背景
刚开始开发应用,不少人没有注意到点击桌面图标打开App有短暂的白屏或者黑屏的情况,短暂的白屏或者黑屏多多少少会影响用户的体验。其实只要我们简单设置一下,你的App就没有了白屏或者黑屏,实现秒开的效果。哪里不会点哪里,So easy...
步骤一:设置启动页主题
//在style.xml添加一个启动页主题
步骤二:给启动页设置主题
android:name=".LauncherActivity"
android:theme="@style/LauncherTheme"
android:screenOrientation="portrait">
...
步骤三:设置启动页主题windowBackground样式
drawable/bg_splash.xml
注意:启动页的layout.xml也需要用同一个背景图
android:background="@drawable/bg_splash"
<?xml version="1.0" encoding="utf-8"?>
xmlns:android="http://schemas.android.com/apk/res/android">
android:drawable="#ffffff">
android:bottom="40dp">
android:gravity="bottom|clip_vertical"
android:src="@drawable/launcher_bottom"/>
步骤四:恢复默认主题
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setTheme(R.style.AppTheme);//恢复默认主题样式
setContentView(R.layout.activity_main);
}
结语
效果图就不放了,这种实现方式是市面比较流行的做法,底部LOGO+全白的背景颜色,一般LOGO上面可以添加广告。冷启动白屏优化就是这么简单。如果你们有更好的秒开启动方案,可以留言。共同学习进步!