当前位置: 首页 > article >正文

SplashScreen使用

从 Android 12 开始,SplashScreen API 可让应用通过动画启动,包括启动时的进入应用动作、显示应用图标的启动画面,以及向应用本身的过渡。SplashScreen 是 Window,因此涵盖 Activity官方文档

相关属性

  1. windowSplashScreenBackground属性单色填充背景
<item name="android:windowSplashScreenBackground">@android:color/holo_orange_light</item>
  1. windowSplashScreenAnimatedIcon 替换默认的窗口中心的启动画面图标。如果该对象可通过 AnimationDrawableAnimatedVectorDrawable呈现动画效果和进行绘制,还需要设置 windowSplashScreenAnimationDuration以在显示起始窗口的同时播放动画。
<item name="android:windowSplashScreenAnimatedIcon">@drawable/logo</item>
  1. windowSplashScreenAnimationDuration指定启动画面图标动画的时长。设置后对实际启动画面的显示时间不会有影响,可以在自定义启动画面退出动画时使用 SplashScreenView#getIconAnimationDuration检索图标动画的时长,单位为ms。让启动画面显示更长时间。
<item name="android:windowSplashScreenAnimationDuration">500</item>
  1. windowSplashScreenIconBackgroundColor设置启动画面图标后面的背景。当窗口背景与图标之间的颜色对比度不够高时,起到颜色过渡的作用。
<item name="android:windowSplashScreenIconBackgroundColor">@android:color/holo_purple</item>
  1. windowSplashScreenBrandingImage设置要显示在启动画面底部的品牌logo图片。但是Google不建议使用
<item name="android:windowSplashScreenBrandingImage">@drawable/logo_icon</item>

以下有两种方式调整SplashScreen

一、禁止使用SplashScreen

位置:android/app/src/main/res/values-v31/styles.xml

通过AndroidManifest.xml 内的android:theme="@style/LaunchTheme" 找到使用的主题名称为LaunchTheme ,找到v31/style.xml 修改为如下

<style name="LaunchTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- 不显示SplashScreen -->
    <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>

二、修改

颜色资源文件位置

位置:android/app/src/main/res/values/colors.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="red">#ff0000</color>
    <color name="splash_screen_background">#7B5AB6</color>
</resources>

修改位置同上

<style name="LaunchTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Show a splash screen on the activity. Automatically removed when
         Flutter draws its first frame -->
    <item name="android:windowSplashScreenBackground">@color/splash_screen_background</item>
    <item name="android:windowSplashScreenIconBackgroundColor">@color/red</item>
    <item name="android:windowSplashScreenAnimatedIcon">@drawable/news_avd_v02</item>
    <item name="android:windowSplashScreenAnimationDuration">500</item>
    <item name="android:windowSplashScreenBrandingImage">@drawable/news_avd_v02</item>
</style>
  1. 如果windowSplashScreenAnimatedIcon 非透明背景,且不是圆形,则会被裁剪成圆,此时windowSplashScreenIconBackgroundColor 不显示
  2. 如果windowSplashScreenAnimatedIcon 为动效,但是未设置windowSplashScreenAnimationDuration ,则展示静止

http://www.kler.cn/a/228116.html

相关文章:

  • 云计算技术深度解析与代码使用案例
  • FileReader使用
  • 三星手机人脸识别解锁需要点击一下电源键,能够不用点击直接解锁吗
  • 简易CPU设计入门:控制总线的剩余信号(二)
  • Swoole的MySQL连接池实现
  • 【OMCI实践】ONT上线过程的omci消息(二)
  • 状态压缩 笔记
  • 深拷贝的几种方法
  • 计算机设计大赛 深度学习 植物识别算法系统
  • Unity类银河恶魔城学习记录1-13PlayerAttack-Improve P40
  • canvas图片上设置镂空文字效果
  • Docker进阶篇-Docker网络
  • LabVIEW核能设施监测
  • 信创ARM架构QT应用开发环境搭建
  • jmeter设置关联
  • 前端面试拼图-数据结构与算法
  • 掌握数据预测的艺术:线性回归模型详解
  • 机器学习 - 梯度下降
  • 虚拟机扩容后黑屏卡死解决方法
  • Cannot resolve plugin org.apache.maven.plugins:maven-compiler-plugin:3.8.1
  • Java 中 ExceptionInInitializer 错误
  • Docker部署Grafana+Promethus监控Mysql和服务器
  • 【Golang】自定义logrus日志保存为日志文件
  • 04-Java建造者模式 ( Builder Pattern )
  • QT6调用音频输入输出(超详细)
  • Day59 单调栈part02 503. 下一个更大元素 II 42. 接雨水