关闭 Android SplashScreen(闪屏)

SplashScreen在Android 12上是强制的,如果你什么都不做,你的App在Android 12上就会自动拥有SplashScreen界面

但是这个SplashScreen界面太局限了能改的地方太少了

其实也没什么他主要作用是为了在App启动初始化的时候避免让用户在一个空白界面等待过长时间,一定程度上提升用户体验。

关闭这个闪屏也简单 把启动Activity的主题替换一下就好了比如:

XML 复制代码
    <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

相关推荐
冬奇Lab1 小时前
相机拍照流程:从快门按下到JPEG存储的完整旅程
android·音视频开发·源码阅读
alexhilton1 小时前
在Compose中用Shader实现透明的粘稠元球效果
android·kotlin·android jetpack
jwn9992 小时前
Laravel5.x核心特性全解析
android·php·laravel
studyForMokey4 小时前
【Android面试】RecylerView专题
android·spring·面试
android_cai_niao6 小时前
Android中有什么技术过时了可以直接用新技术的
android·过时技术
lingggggaaaa6 小时前
PHP原生开发篇&文件安全&上传监控&功能定位&关键搜索&1day挖掘
android·学习·安全·web安全·php
我是场7 小时前
我的NPI项目 - OTA upgrade是什么?
android·人工智能
zh_xuan7 小时前
Android 实现fragment导航
android·fragment导航
java资料站7 小时前
MySQL 增量同步脚本
android·数据库·mysql
穷人小水滴7 小时前
手机安装 Cross Profile Test App (Android)
android·手机·一加