自适应图标不适用于无根像素启动器
Adaptive icon doesn't work on rootless pixel launcher
我在我的应用程序中添加了自适应图标。它在 Pixel 和 Pixel 2 上运行良好。但在带有无根像素启动器的 Nexus 6 上它不起作用。我可以在 Nexus 6 上看到其他圆形图标,因此它适用于其他应用程序。
我的清单如下所示:
<application
android:name=".MyAppclass"
android:allowBackup="true"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:theme="@style/MyTheme">
在 mipmap-anydpi-v26
我有 ic_launcher.xml
看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_background_icon"/>
<foreground android:drawable="@drawable/ic_foreground_icon"/>
</adaptive-icon>
我错过了什么?
谢谢。
原来我还需要 AndroidManifest.xml
上的 roundIcon
属性。
https://github.com/amirzaidi/Launcher3/issues/421#issuecomment-372961568
我在我的应用程序中添加了自适应图标。它在 Pixel 和 Pixel 2 上运行良好。但在带有无根像素启动器的 Nexus 6 上它不起作用。我可以在 Nexus 6 上看到其他圆形图标,因此它适用于其他应用程序。
我的清单如下所示:
<application
android:name=".MyAppclass"
android:allowBackup="true"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:theme="@style/MyTheme">
在 mipmap-anydpi-v26
我有 ic_launcher.xml
看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_background_icon"/>
<foreground android:drawable="@drawable/ic_foreground_icon"/>
</adaptive-icon>
我错过了什么?
谢谢。
原来我还需要 AndroidManifest.xml
上的 roundIcon
属性。
https://github.com/amirzaidi/Launcher3/issues/421#issuecomment-372961568