谷歌建议
谷歌在material design中提倡使用Splash启动界面。那Splash启动界面如何呈现秒开的效果呢,我们下面来看看具体的实现步骤。
具体实现
在drawable文件夹下建立splash.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:drawable="@color/dark_gray"></item>
<item>
<bitmap android:src="@mipmap/logo"
android:gravity="center"/>
</item>
</layer-list>
在style.xml为SplashActivity建立一个theme:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
</style>
<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowBackground">@drawable/splash</item>
</style>
</resources>
在AndroidManifest.xml中定义SplashActivity的theme为splash_theme,
<activity android:name=".SplashActivity"
android:theme="@style/SplashTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
SplashActivity的实现
package com.my.media;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
public class SplashActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent lIntent = new Intent(this,MainActivity.class);
startActivity(lIntent);
finish();
}
}
注意为了保证启动速度,SplashActivity不需要实现setContentView()方法。如果你的SplashActivity设置了layout文件,那么其在app完全初始化完成后才会显示,带来一定的耗时。这里直接以theme作为SplashActivity展示的UI,减少了加载时间达到秒开的效果。使用该启动画面实现方式亦可以避免有些app点开时出现的白屏问题。
参考