概述
android12新增了一个SplashScreen的启动页辅助类。不过他并不能向下兼容,只能在android12进行使用。因此官方在jetpack中开发了可以向下进行兼容的jetpack版SplashScreen(目前仍然是alpha所以还不不建议在项目中使用)。本文会简单讲讲jetpack版SplashScreen的使用。
简易使用
引入依赖
implementation 'androidx.core:core-splashscreen:1.0.0-alpha02'
配置主题
<style name="AnananSplashScreen" parent="Theme.SplashScreen">
# 启动画面的背景,默认使用 windowBackground
<item name="windowSplashScreenBackground">#d73</item>
# 指定 icon,支持静态 drawable 或动画 vector drawable
<item name=

1万+

被折叠的 条评论
为什么被折叠?



