新技术论坛
搜索
查看: 1143|回复: 0
打印 上一主题 下一主题

[Android] App启动优化最佳实践

[复制链接]
  • TA的每日心情
    开心
    2016-12-9 18:18
  • 签到天数: 85 天

    连续签到: 1 天

    [LV.6]常住居民II

    扫一扫,手机访问本帖
    楼主
    跳转到指定楼层
    发表于 2017-2-3 10:49:26 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

    做Android开发,一定写给过启动页,在这里做一些初始化的操作,还有就是显示推广信息。

    很普通的一个页面,以前测试也给我提出过bug,应用在启动的时候,有时候有白屏/黑屏。当时能做的就是尽量较少耗时操作,上面医生的文章里也有提到,但是通过主题的方式优化这个问题之前还真是不知道的。

    下面主要总结一下通过主题的方式优化启动页(医生还提到了在子线程初始化和使用IntentService初始化,都是属于异步初始化,还有延迟初始化,就不说了)

    通过修改主题优化启动时白屏/黑屏

    原理请移步到医生的文章,我就不复述了,之所以会看到白屏或者黑屏,是和我们的主题有关系的,因为系统默认使用的主题,背景色就是白色/黑色。那么我们自定义一个主题,让默认的样式就是我们想要的,就优化了白屏/黑屏的问题。

    首先,我们自定义一个主题,设置一个我们想要的背景

    1. <!-- 启动页主题 -->
    2. <style name="SplashTheme" parent="@style/Theme.AppCompat.Light.NoActionBar">
    3.     <item name="android:windowBackground">@drawable/start_window</item>
    4. </style>
    复制代码

    自定义背景start_window.xml

    1. <layer-list xmlns:android="http://schemas.android.com/apk/res/android"
    2.     android:opacity="opaque">
    3.     <!-- The background color, preferably the same as your normal theme -->
    4.     <item android:drawable="@android:color/holo_blue_dark" />
    5.     <!-- Your product logo - 144dp color version of your app icon -->
    6.     <item>
    7.         <bitmap
    8.             android:gravity="center"
    9.             android:src="@mipmap/ic_launcher" />
    10.     </item>
    11. </layer-list>
    复制代码

    最后,在清单文件设置启动页使用我们自定义的主题

    1. <?xml version="1.0" encoding="utf-8"?>
    2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    3.     package="com.bitmain.launchtimedemo">

    4.     <application
    5.         android:allowBackup="true"
    6.         android:icon="@mipmap/ic_launcher"
    7.         android:label="@string/app_name"
    8.         android:supportsRtl="true"
    9.         android:theme="@style/AppTheme">
    10.         <!-- 启动页 -->
    11.         <activity
    12.             android:name=".SplashActivity"
    13.             android:theme="@style/SplashTheme">
    14.             <intent-filter>
    15.                 <action android:name="android.intent.action.MAIN" />

    16.                 <category android:name="android.intent.category.LAUNCHER" />
    17.             </intent-filter>
    18.         </activity>
    19.         <!-- 主页 -->
    20.         <activity android:name=".MainActivity" />
    21.     </application>

    22. </manifest>
    复制代码

    到此大功告成,为了体现出效果,在启动页加载之前,我们模拟一个白屏/黑屏的延时操作

    1. public class SplashActivity extends AppCompatActivity {
    2.     @Override
    3.     protected void onCreate(Bundle savedInstanceState) {
    4.         super.onCreate(savedInstanceState);
    5.         // 模拟系统初始化  白屏、黑屏
    6.         SystemClock.sleep(1000);
    7.         setContentView(R.layout.activity_splash);
    8.         // 启动后 停留2秒进入到主页面
    9.         new Handler().postDelayed(new Runnable() {
    10.             @Override
    11.             public void run() {
    12.                 Intent intent = new Intent(SplashActivity.this, MainActivity.class);
    13.                 startActivity(intent);
    14.                 finish();
    15.             }
    16.         }, 2000);
    17.     }
    18. }  
    复制代码



    高级模式
    B Color Image Link Quote Code Smilies

    本版积分规则

    手机版|Archiver|开发者俱乐部 ( ICP/ISP证:辽B-2-4-20110106号 IDC证:辽B-1-2-20070003号 )

    GMT+8, 2024-12-22 23:56 , Processed in 0.131541 second(s), 18 queries .

    X+ Open Developer Network (xodn.com)

    © 2009-2017 沈阳讯网网络科技有限公司

    快速回复 返回顶部 返回列表