App启动优化最佳实践

983535198 8年前
   <p>做Android开发,一定写给过启动页,在这里做一些初始化的操作,还有就是显示推广信息。</p>    <p>很普通的一个页面,以前测试也给我提出过bug,应用在启动的时候,有时候有白屏/黑屏。当时能做的就是尽量较少耗时操作,上面医生的文章里也有提到,但是通过主题的方式优化这个问题之前还真是不知道的。</p>    <p>下面主要总结一下通过主题的方式优化启动页(医生还提到了在子线程初始化和使用IntentService初始化,都是属于异步初始化,还有延迟初始化,就不说了)</p>    <h2><strong>效果图</strong></h2>    <p style="text-align: center;"><img src="https://simg.open-open.com/show/e62d6069e4bdb8400b69d53b67dbb5df.gif"></p>    <p style="text-align: center;"><img src="https://simg.open-open.com/show/105e633208639573c1d72d763ded11d7.gif"></p>    <h2><strong>通过修改主题优化启动时白屏/黑屏</strong></h2>    <p>原理请移步到医生的文章,我就不复述了,之所以会看到白屏或者黑屏,是和我们的主题有关系的,因为系统默认使用的主题,背景色就是白色/黑色。那么我们自定义一个主题,让默认的样式就是我们想要的,就优化了白屏/黑屏的问题。</p>    <p>首先,我们自定义一个主题,设置一个我们想要的背景</p>    <pre>  <code class="language-java"><!-- 启动页主题 -->  <stylename="SplashTheme"parent="@style/Theme.AppCompat.Light.NoActionBar">  <itemname="android:windowBackground">@drawable/start_window</item>  </style>  </code></pre>    <p>自定义背景 start_window.xml</p>    <pre>  <code class="language-java"><layer-listxmlns:android="http://schemas.android.com/apk/res/android"  android:opacity="opaque">  <!-- The background color, preferably the same as your normal theme -->  <itemandroid:drawable="@android:color/holo_blue_dark"/>  <!-- Your product logo - 144dp color version of your app icon -->  <item>  <bitmap  android:gravity="center"  android:src="@mipmap/ic_launcher"/>  </item>  </layer-list>  </code></pre>    <p>最后,在清单文件设置启动页使用我们自定义的主题</p>    <pre>  <code class="language-java"><?xml version="1.0" encoding="utf-8"?>  <manifestxmlns:android="http://schemas.android.com/apk/res/android"  package="com.bitmain.launchtimedemo">    <application  android:allowBackup="true"  android:icon="@mipmap/ic_launcher"  android:label="@string/app_name"  android:supportsRtl="true"  android:theme="@style/AppTheme">  <!-- 启动页 -->  <activity  android:name=".SplashActivity"  android:theme="@style/SplashTheme">  <intent-filter>  <actionandroid:name="android.intent.action.MAIN"/>    <categoryandroid:name="android.intent.category.LAUNCHER"/>  </intent-filter>  </activity>  <!-- 主页 -->  <activityandroid:name=".MainActivity"/>  </application>    </manifest>  </code></pre>    <p>到此大功告成,为了体现出效果,在启动页加载之前,我们模拟一个白屏/黑屏的延时操作</p>    <pre>  <code class="language-java">publicclassSplashActivityextendsAppCompatActivity{    @Override  protectedvoidonCreate(Bundle savedInstanceState){  super.onCreate(savedInstanceState);  // 模拟系统初始化 白屏、黑屏   SystemClock.sleep(1000);   setContentView(R.layout.activity_splash);  // 启动后 停留2秒进入到主页面  newHandler().postDelayed(newRunnable() {  @Override  publicvoidrun(){   Intent intent = newIntent(SplashActivity.this, MainActivity.class);   startActivity(intent);   finish();   }   }, 2000);   }  }  </code></pre>    <p> </p>    <p>来自:http://kongqw.com/2016/11/14/2016-11-14-App启动优化最佳实践/</p>    <p> </p>