android-从启动器图标api中删除黑色背景26

时间:2018-10-22 07:08:51

标签: android android-studio android-launcher android-icons

我在api 26中的启动器图标上遇到了很大的问题

我的png具有透明背景,但是透明部分上却变黑

这是结果:

enter image description here

它不适合主题,因为其他应用程序没有背景

这是我的清单:

<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文件,它是透明图像:

enter image description here

这是ic_launcher_foreground文件:

enter image description here

我该如何解决?如何摆脱黑色背景?

0 个答案:

没有答案