自 2025 年 3 月 27 日起,我们建议您使用 android-latest-release
而非 aosp-main
构建 AOSP 并为其做出贡献。如需了解详情,请参阅 AOSP 的变更。
实现圆形图标
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
Android 7.1.1 及更高版本支持使用圆形启动器图标。默认情况下,系统不会启用圆形启动器图标。如需在设备实现中使用圆形图标,您必须修改设备上的资源叠加层才能予以启用。
您使用了叠加层的资源文件位于以下位置:frameworks/base/core/res/res/values/config.xml
如需启用圆形图标,请将叠加层文件中的 config_useRoundIcon
设置从 false
更改为 true
:
<!-- Flag indicating whether round icons should be parsed from the application manifest. -->
<bool name="config_useRoundIcon">true</bool>
本页面上的内容和代码示例受内容许可部分所述许可的限制。Java 和 OpenJDK 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-03-26。
[null,null,["最后更新时间 (UTC):2025-03-26。"],[],[],null,["# Implement circular icons\n\nCircular [launcher\nicons](https://developer.android.com/guide/practices/ui_guidelines/icon_design_adaptive) are supported in Android 7.1.1 and later. Circular launcher icons\nare not enabled by default. To use circular icons in your device\nimplementation, you must edit the [resource\noverlay](/docs/setup/add-device#use-resource-overlays) on your device to enable them.\n\nThe resource file you are using an overlay on is at:\n[frameworks/base/core/res/res/values/config.xml](https://android.googlesource.com/platform/frameworks/base/+/android16-release/core/res/res/values/config.xml)\n\nTo enable circular icons, change the `config_useRoundIcon`\nsetting in your overlay file from `false` to `true`: \n\n```\n\u003c!-- Flag indicating whether round icons should be parsed from the application manifest. --\u003e\n\u003cbool name=\"config_useRoundIcon\"\u003etrue\u003c/bool\u003e\n```"]]