Android12启动页适配

1.添加兼容库

implementation 'androidx.appcompat:appcompat:1.4.1'

implementation 'androidx.core:core-splashscreen:1.0.0'

2.添加该style并给启动页引用

   

   

其中news_avd_v02是animated-vector类型的图片

3.编辑启动页代码

Activity的onCreate方法中加入installSplashScreen(),需要在super.onCreate(savedInstanceState)前加入

4.兼容12以下设备

12以下的设备不支持windowSplashScreenAnimatedIcon使用animated-vector类型的图片,需要使用静态图片,所以要区分版本使用,做法如下:

Android12启动页适配_第1张图片

 5.让启动页显示久一点

最简单的做法就是使用Thead.sleep(5000),另外还有viewTreeObserver.addOnPreDrawListener的做法,效果都类似。

你可能感兴趣的:(Android)