我在api 26中的启动器图标上遇到了很大的问题
我的png具有透明背景,但是透明部分上却变黑
这是结果:
它不适合主题,因为其他应用程序没有背景
这是我的清单:
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="false"
android:theme="@style/AppTheme">
这是api 26的代码
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@mipmap/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
这是ic_launcher_background文件,它是透明图像:
这是ic_launcher_foreground文件:
我该如何解决?如何摆脱黑色背景?