实现圆形图标

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>