我在自己的应用中添加了自适应图标。它在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>
看起来像这样:
STAR
我错过了什么?
感谢。
答案 0 :(得分:0)
原来我还需要roundIcon
上的AndroidManifest.xml
属性。
https://github.com/amirzaidi/Launcher3/issues/421#issuecomment-372961568