基于Android P,自定义Android开机动画的方法

简介: 本文详细介绍了基于Android P系统自定义开机动画的步骤,包括动画文件结构、脚本编写、ZIP打包方法以及如何将自定义动画集成到AOSP源码中。

1.前言

  • 基于android P(9.0)环境

.
安卓的开机动画是一个ZIP压缩文件,里面包含了脚本文件,以及一系列的PNG图片,脚本文件用于解释如何播放这些PNG图片。

本文,以谷歌原文为基础,详细解释自定义安卓开机动画的方法,基于Android P

2. 基本步骤

  1. 解压一个正常播放的bootanimation.zip文件,采用其结构和目录
  2. 删除其PNG文件和多余的part目录
  3. 将PNG文件按需要分组,存放到各part目录中
  4. 编辑控制播放的脚本文件desc.txt
  5. 重新压缩为bootanimation.zip文件
  6. 部署到开发部或者虚拟机上测试
  7. 修改aosp源码,集成到安卓系统源代码目录中
  8. 编译成系统镜像,确认修改正确

3.bootanimation.zip 自定义方法

3.1 存放路径

Android的开机动画是以bootanimation.zip的形式存储在手机、TV等安卓设备上,安卓启动时候,搜索开机动画的ZIP文件的优先顺序如下,只会播放其中一个:

如果设置prop属性vold.decrypt = 1,则:
(1)/system/media/bootanimation-encrypted.zip (if getprop("vold.decrypt") = '1')
否则:
(2)/system/media/bootanimation.zip
(3)/oem/media/bootanimation.zip

从以上路径可知,在源码集成的时候,只需让Makefile在编译过程中,将bootanimation.zip复制到android设备的其中一个目录即可。

3.2 文件结构

下面的ZIP动画文件,是从Android R中获取的原生文件,即谷歌的androidTV开机动画。

在自定义自己动画的时候,我们只需要将自己的图片,按场景或者自己的意图,分目录存储好,再编辑下动画的脚本文件即可。

szhou@bcsrv01:~/Documents/R$ tree -L 3
.
├── bootanimation
│   ├── desc.txt            ---> 控制动画播放的-格式化的-脚本文件 
│   ├── part0               ---> part 0 -- part N 用于组织各个场景的图片,同场景的放同目录
│   │   └── 00000.png
│   ├── part1
│   │   ├── 01000.png
│   │   ├── 省略.png
│   │   └── 01033.png
│   ├── part2
│   │   ├── 02000.png
│   │   ├── 省略.png
│   │   └── 03184.png
│   ├── part4
│   │   ├── 04000.png
│   │   ├── 省略.png
│   │   └── 04101.png
│   └── part5
│       ├── 00000.png
│       ├── 省略.png
│       └── 00010.png
└── bootanimation.zip       ---> ZIP动画原文件,来自于Android R(11.0)

7 directories, 374 files
szhou@bcsrv01:~/Documents/R$

脚本文件:desc.txt

512 416 60
c 1 0 part0
c 1 15 part1
c 1 0 part2
c 1 0 part3
p 0 0 part4
c 1 0 part5

3.3 解释 desc.txt

512 416 60    宽x高=512x416, fps=60帧
c 1 0 part0   part0只播放1次,但需全部图片都播放,不能打断
c 1 15 part1  part1只播放1次,但需全部图片都播放,不能打断,在播放结束时延迟15帧,即15/fps=1/60=1/4秒
c 1 0 part2   part2只播放1次,但需全部图片都播放,不能打断
c 1 0 part3   part3只播放1次,但需全部图片都播放,不能打断
p 0 0 part4   part4循环播放,直到系统启动完成,收到boot completed信号即打断播放
c 1 0 part5   part5只播放1次,但需全部图片都播放,不能打断

3.4 谷歌原文:desc.txt

The first line defines the general parameters of the animation:

WIDTH HEIGHT FPS [PROGRESS]

WIDTH: animation width (pixels)
HEIGHT: animation height (pixels)
FPS: frames per second, e.g. 60
PROGRESS: whether to show a progress percentage on the last part
    The percentage will be displayed with an x-coordinate of ‘c’, and a y-coordinate set to 1/3 of the animation height.

It is followed by a number of rows of the form:

TYPE COUNT PAUSE PATH [FADE [#RGBHEX [CLOCK1 [CLOCK2]]]]

TYPE: a single char indicating what type of animation segment this is:
    p -- this part will play unless interrupted by the end of the boot
    c -- this part will play to completion, no matter what
    f -- same as p but in addition the specified number of frames is being faded out while continue playing. Only the first interrupted f part is faded out, other subsequent f parts are skipped
COUNT: how many times to play the animation, or 0 to loop forever until boot is complete
PAUSE: number of FRAMES to delay after this part ends
PATH: directory in which to find the frames for this part (e.g. part0)
FADE: (ONLY FOR f TYPE) number of frames to fade out when interrupted where 0 means immediately which makes f ... 0 behave like p and doesn't count it as a fading part

…… OPTIONS 配置……省略……

.

3.5 ZIP打包

3.5.1 命令
cd <path-to-pieces>
zip -0qry -i \*.txt \*.png \*.wav @ ../bootanimation.zip *.txt part*
3.5.2 用法举例
  1. 切换到bootanimation目录
  2. 执行zip命令
  3. 在bootanimation的上一级目录,获取bootanimation.zip
szhou@bcsrv01:~/bootanimation$ zip -0qry -i \*.txt \*.png \*.wav @ ../bootanimation.zip *.txt part*
szhou@bcsrv01:~/bootanimation$ ls -al ../
total 92
drwx------ 4 szhou szhou  4096 8月  11 11:07 .
drwxr-xr-x 7 szhou szhou  4096 8月  11 10:14 ..
drwx------ 5 szhou szhou  4096 8月  10 15:26 bootanimation
-rw-rw-r-- 1 szhou szhou 77767 8月  11 11:07 bootanimation.zip --> 在上级目录生成ZIP
drwx------ 3 szhou szhou  4096 8月  11 10:12 R
szhou@bcsrv01:~/bootanimation$

最后,将bootanimation.zip复制到U盘上

4. 上机测试

4. 1 部署的路径

下面两个目录都可以用于简单测试,任选其一

  • /system/media/bootanimation.zip
  • /oem/media/bootanimation.zip

我们将部署到oem目录下做测试

4. 2 部署的命令

此处使用串口连接到开发板上
若使用adb,可使用$adb shell获得bash shell环境,即可直接执行下面命令

su
mount -o remount,rw /
mkdir /oem/media
chmod 755 /oem/media
cp /mnt/xxx/bootanimation.zip /oem/media/bootanimation.zip
sync
reboot

4. 3 效果

reboot重启后,即可看到开机动画的效果
在这里插入图片描述

.

5. 集成到AOSP源码中

基于android P,使用的是联发科平台,请根据自己的平台切换对应目录,若不确定,可使用find命令查找下文件名

  1. 将ZIP文件放置于下面目录
    aosp/vendor/mediatek/proprietary_tv/open/product/m7642/preinstall/bootanimation.zip

  2. 修改makefile文件
    aosp/vendor/mediatek/proprietary_tv/open/product/m7642/preinstall/preinstall.mk

在编译时候,将ZIP复制到对应的目录下:

PRODUCT_COPY_FILES += \
     $(LOCAL_PATH)/bootanimation.zip:/system/media/bootanimation.zip

或者

PRODUCT_COPY_FILES += \
     $(LOCAL_PATH)/bootanimation.zip:/oem/media/bootanimation.zip

.

6. 谷歌原文地址

安卓原文:BootAnimationFormat

.

7. 关于 options 参数

本文描述的内容,已基本够用,网络上的文章,大多都提及了上文所述的内容,但还有OPTION部分,很少有人去写,本想研究一下感兴趣的[PROGRESS],但……

WIDTH HEIGHT FPS [PROGRESS]

源码中查找PROGRESS参数的足迹

  • 下面此函数用于解析desc.txt文件
//路径: frameworks\base\cmds\bootanimation\BootAnimation.cpp
bool BootAnimation::parseAnimationDesc(Animation& animation)
{
   
   
    String8 desString;

    if (!readFile(animation.zip, "desc.txt", desString)) {
   
   
        return false;
    }
  • 但从Animation类的成员变量看,并未提供PROGRESS的解析
    struct Animation {
   
   
        struct Frame {
   
   
            String8 name;
            FileMap* map;
            int trimX;
            int trimY;
            int trimWidth;
            int trimHeight;
            mutable GLuint tid;
            bool operator < (const Frame& rhs) const {
   
   
                return name < rhs.name;
            }
        };
        struct Part {
   
   
            int count;  // The number of times this part should repeat, 0 for infinite
            int pause;  // The number of frames to pause for at the end of this part
            int clockPosX;  // The x position of the clock, in pixels. Positive values offset from
                            // the left of the screen, negative values offset from the right.
            int clockPosY;  // The y position of the clock, in pixels. Positive values offset from
                            // the bottom of the screen, negative values offset from the top.
                            // If either of the above are INT_MIN the clock is disabled, if INT_MAX
                            // the clock is centred on that axis.
            String8 path;
            String8 trimData;
            SortedVector<Frame> frames;
            bool playUntilComplete;
            float backgroundColor[3];
            uint8_t* audioData;
            int audioLength;
            Animation* animation;
        };
        int fps;
        int width;
        int height;
        Vector<Part> parts;
        String8 audioConf;
        String8 fileName;
        ZipFileRO* zip;
        Font clockFont;
    };
  • 所以,从源码的简单分析看,PROGRESS参数看样子无法使用,在测试中添加相关参数,看样子是被直接忽略掉了。后续有时间再继续分析,有知道的同学,可以备注下~
相关文章
|
2月前
|
缓存 前端开发 Android开发
安卓开发中的自定义视图:从零到英雄
【10月更文挑战第42天】 在安卓的世界里,自定义视图是一块画布,让开发者能够绘制出独一无二的界面体验。本文将带你走进自定义视图的大门,通过深入浅出的方式,让你从零基础到能够独立设计并实现复杂的自定义组件。我们将探索自定义视图的核心概念、实现步骤,以及如何优化你的视图以提高性能和兼容性。准备好了吗?让我们开始这段创造性的旅程吧!
48 1
|
3月前
|
Android开发 开发者
安卓应用开发中的自定义视图
【9月更文挑战第37天】在安卓开发的海洋中,自定义视图犹如一座座小岛,等待着勇敢的探索者去发现其独特之处。本文将带领你踏上这段旅程,从浅滩走向深海,逐步揭开自定义视图的神秘面纱。
50 3
|
3月前
|
数据可视化 Android开发 开发者
安卓应用开发中的自定义View组件
【10月更文挑战第5天】在安卓应用开发中,自定义View组件是提升用户交互体验的利器。本篇将深入探讨如何从零开始创建自定义View,包括设计理念、实现步骤以及性能优化技巧,帮助开发者打造流畅且富有创意的用户界面。
141 0
|
3月前
|
缓存 Java Shell
Android 系统缓存扫描与清理方法分析
Android 系统缓存从原理探索到实现。
110 15
Android 系统缓存扫描与清理方法分析
|
2月前
|
搜索推荐 前端开发 Android开发
安卓应用开发中的自定义视图实现
【10月更文挑战第30天】在安卓开发的海洋中,自定义视图是那抹不可或缺的亮色,它为应用界面的个性化和交互体验的提升提供了无限可能。本文将深入探讨如何在安卓平台创建自定义视图,并展示如何通过代码实现这一过程。我们将从基础出发,逐步引导你理解自定义视图的核心概念,然后通过一个实际的代码示例,详细讲解如何将理论应用于实践,最终实现一个美观且具有良好用户体验的自定义控件。无论你是想提高自己的开发技能,还是仅仅出于对安卓开发的兴趣,这篇文章都将为你提供价值。
|
2月前
|
Android开发 开发者 UED
安卓开发中自定义View的实现与性能优化
【10月更文挑战第28天】在安卓开发领域,自定义View是提升应用界面独特性和用户体验的重要手段。本文将深入探讨如何高效地创建和管理自定义View,以及如何通过代码和性能调优来确保流畅的交互体验。我们将一起学习自定义View的生命周期、绘图基础和事件处理,进而探索内存和布局优化技巧,最终实现既美观又高效的安卓界面。
56 5
|
3月前
|
Android开发 UED
Android 中加载 Gif 动画
【10月更文挑战第20天】加载 Gif 动画是 Android 开发中的一项重要技能。通过使用第三方库或自定义实现,可以方便地在应用中展示生动的 Gif 动画。在实际应用中,需要根据具体情况进行合理选择和优化,以确保用户体验和性能的平衡。可以通过不断的实践和探索,进一步掌握在 Android 中加载 Gif 动画的技巧和方法,为开发高质量的 Android 应用提供支持。
|
3月前
|
XML 前端开发 Java
安卓应用开发中的自定义View组件
【10月更文挑战第5天】自定义View是安卓应用开发的一块基石,它为开发者提供了无限的可能。通过掌握其原理和实现方法,可以创造出既美观又实用的用户界面。本文将引导你了解自定义View的创建过程,包括绘制技巧、事件处理以及性能优化等关键步骤。

热门文章

最新文章