Android 源覆盖如何工作?

发布于 2024-10-24 12:29:45 字数 422 浏览 1 评论 0原文

在 Android 源代码中 device/sample 文件夹中有一个名为 overlays 的文件夹。您会在 cyanogen mods 中看到相同的覆盖文件夹。

这个覆盖文件夹是什么?它是如何运作的?它有什么用?我在哪里可以阅读更多相关内容?

提前致谢

In the android source in the device/sample folder there is a folder called overlays. You see the same overlay folder in e.g. the cyanogen mods.

What is this overlay folder? How does it work? What is it used for? Where can I read more about it?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

羁绊已千年 2024-10-31 12:29:45

覆盖是一种自定义资源文件的方法,不适用于源文件。

替换适用于字符串粒度。这意味着,对于覆盖文件中不存在的字符串,将使用原始字符串中的相应字符串。

来自文档

Android 构建系统使用资源覆盖来定制产品
在构建时。资源覆盖指定资源文件
应用在默认值之上。要使用资源覆盖,请修改
项目构建文件将 PRODUCT_PACKAGE_OVERLAYS 设置为相对路径
到您的顶级目录。该路径成为搜索的影子根
当构建系统搜索时与当前根一起
资源。

文件中包含最常用的自定义设置
frameworks/base/core/ res/res/values/config.xml

要在此文件上设置资源覆盖,请添加覆盖目录
使用以下之一到项目构建文件:

PRODUCT_PACKAGE_OVERLAYS := 设备/设备实现者/设备名称/覆盖

PRODUCT_PACKAGE_OVERLAYS := 供应商/供应商名称/覆盖

然后,在目录中添加一个覆盖文件,例如:

vendor/foobar/overlay/frameworks/base/core/res/res/values/config.xml

覆盖 config.xml 文件中找到的任何字符串或字符串数​​组
替换原始文件中的内容。

Overlays are a way to customize resource files and do not work for source files.

Replacement works on string granularity. That means, that for strings that do not exist in the overlay file, the corresponding string from the original is used.

From the documentation:

The Android build system uses resource overlays to customize a product
at build time. Resource overlays specify resource files that are
applied on top of the defaults. To use resource overlays, modify the
project buildfile to set PRODUCT_PACKAGE_OVERLAYS to a path relative
to your top-level directory. That path becomes a shadow root searched
along with the current root when the build system searches for
resources.

The most commonly customized settings are contained in the file
frameworks/base/core/res/res/values/config.xml.

To set up a resource overlay on this file, add the overlay directory
to the project buildfile using one of the following:

PRODUCT_PACKAGE_OVERLAYS := device/device-implementer/device-name/overlay

or

PRODUCT_PACKAGE_OVERLAYS := vendor/vendor-name/overlay

Then, add an overlay file to the directory, for example:

vendor/foobar/overlay/frameworks/base/core/res/res/values/config.xml

Any strings or string arrays found in the overlay config.xml file
replace those found in the original file.

滥情哥ㄟ 2024-10-31 12:29:45

例如,假设您想要修改设备的 Android 源代码中的某些文件(例如,您想要向启动器资源添加其他字符串)。不建议修改Android的实际源码。

相反,您可以创建模仿 Android 实际文件系统路径布局的覆盖层,并将更改后的文件放在那里。如果是 Launcher 中的字符串,您可以创建与路径相对应的目录:packages/apps/Launcher2/res/values 并将修改后的 strings.xml 放入其中

,因此,当您构建您的设备,此文件将被替换。

For instance, imagine that you want to modify some files in Android source for your device (for instance, you want to add additional string to Launcher resources). It is not recommended to modify the actual sources of Android.

Instead of this you create overlay that mimics the actual filesystem path layout of Android and put there your changed file. In case of string in Laucher, you create directories that corresponds to the path: packages/apps/Launcher2/res/values and put there modified strings.xml

Thus, when you build your device this file will be substituted.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文