关闭 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

相关推荐
2501_915918411 天前
如何解析iOS崩溃日志:从获取到符号化分析
android·ios·小程序·https·uni-app·iphone·webview
Entropless1 天前
OkHttp 深度解析(一) : 从一次完整请求看 OkHttp 整体架构
android·okhttp
v***91301 天前
Spring+Quartz实现定时任务的配置方法
android·前端·后端
wilsend1 天前
Android Studio 2024版新建java项目和配置环境下载加速
android
兰琛1 天前
Android Compose展示PDF文件
android·pdf
路人甲ing..1 天前
Ubuntu怎么安装tar.gz (android-studio为例)
linux·ubuntu·kotlin·android studio
走在路上的菜鸟1 天前
Android学Dart学习笔记第四节 基本类型
android·笔记·学习
百锦再1 天前
第21章 构建命令行工具
android·java·图像处理·python·计算机视觉·rust·django
skyhh1 天前
Android Studio 最新版汉化
android·ide·android studio
路人甲ing..1 天前
Android Studio 快速的制作一个可以在 手机上跑的app
android·java·linux·智能手机·android studio