SplashScreen在Android 12上是强制的,如果你什么都不做,你的App在Android 12上就会自动拥有SplashScreen界面
但是这个SplashScreen界面太局限了能改的地方太少了
其实也没什么他主要作用是为了在App启动初始化的时候避免让用户在一个空白界面等待过长时间,一定程度上提升用户体验。
关闭这个闪屏也简单 把启动Activity的主题替换一下就好了比如:文章来源:https://www.toymoban.com/news/detail-808760.html
<style name="SplashScreen" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:screenOrientation">portrait</item>
<item name="android:statusBarColor">@android:color/transparent</item>
</style>
如果你想自定义SplashScreen 可以继承R.style.Theme_SplashScreen 或者 R.style.Theme_SplashScreen_IconBackground.参考
SplashScreen | Android Developers文章来源地址https://www.toymoban.com/news/detail-808760.html
到了这里,关于关闭 Android SplashScreen(闪屏)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!