赞
踩
1.添加兼容库
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'androidx.core:core-splashscreen:1.0.0'
2.添加该style并给启动页引用
<style name="App" parent="@style/Theme.AppCompat">
<item name="android:windowBackground">#ffffff</item>
</style>
<style name="AppSplashScreen" parent="Theme.SplashScreen">
<item name="windowSplashScreenBackground">#ff00</item>
<item name="windowSplashScreenAnimatedIcon">@drawable/news_avd_v02</item>
<item name="windowSplashScreenAnimationDuration">3000</item>
<item name="postSplashScreenTheme">@style/App</item>
</style>
其中news_avd_v02是animated-vector类型的图片
3.编辑启动页代码
Activity的onCreate方法中加入installSplashScreen(),需要在super.onCreate(savedInstanceState)前加入
4.兼容12以下设备
12以下的设备不支持windowSplashScreenAnimatedIcon使用animated-vector类型的图片,需要使用静态图片,所以要区分版本使用,做法如下:
5.让启动页显示久一点
最简单的做法就是使用Thead.sleep(5000),另外还有viewTreeObserver.addOnPreDrawListener的做法,效果都类似。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。