原因
我们app 首次启动时,再到我们第一个页面展示出来之前, 这段时间会有几秒(可能更短)的白屏或者黑屏,体验十分不好,这是因为我们系统默认使用的主题,背景色就是白色/黑色。因此我们自定义一个主题,让默认的样式就是我们想要的,就解决了上述问题。
操作
1 在res/values/styles 定义我们定义的背景主题。
<style name="SplashTheme" parent="@android:style/Theme.Light.NoTitleBar">
<item name="android:windowIsTranslucent">true</item> <!-- 透明背景 -->
</style>
2 在我们第一个要启动的activity 中设置即可。
<activity
android:name=".activity.FirstStartPageActivity"
android:screenOrientation="portrait"
android:theme="@style/SplashTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
水平有限,如果有问题,希望大家包容和纠正,谢谢。