启动页设置常规做法:
//style下设置
<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowBackground">@mipmap/loading</item>
<item name="android:windowFullscreen">true</item>
</style>
//注册文件下设置
<activity android:name=".WelcomeActivity"
android:theme="@style/SplashTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
这样设置会出现启动页图片被拉伸的情况,会感觉图片有一瞬间的抖动
解决方法:
通过layer-list来处理图片拉伸 ,参照官方文档。
在drawable
下建一个splash_bg.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
android:opacity="opaque">
<item>
<bitmap android:src="@mipmap/loading"
android:gravity="fill"/>
</item>
</layer-list>
android:opacity=”opaque” 属性,是为了防止在主题切换之间会闪现的黑屏。
修改style设置
<style name="SplashTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowFullscreen">true</item>
<item name="android:windowBackground">@drawable/splash_bg</item>
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
</style>
windowDrawsSystemBarBackgrounds属性,用来标志此窗口是否负责绘制系统栏背景,把它设成false,这样当它绘制windowBackground的时候,就会在NavigationBar之上。由于这个属性是5.0之后的,所以需要新建values-v21文件夹,以便5.0以上的机器使用v21的Splash主题。