Android 源覆盖如何工作?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
覆盖是一种自定义资源文件的方法,不适用于源文件。
替换适用于字符串粒度。这意味着,对于覆盖文件中不存在的字符串,将使用原始字符串中的相应字符串。
来自文档:
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:
例如,假设您想要修改设备的 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 modifiedstrings.xml
Thus, when you build your device this file will be substituted.