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

Nav*_*rab 6 android android-icons android-launcher android-studio

我在 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">
Run Code Online (Sandbox Code Playgroud)

这是 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"/>
Run Code Online (Sandbox Code Playgroud)

这是 ic_launcher_background 文件,它是一个透明图像:

在此处输入图片说明

这是 ic_launcher_foreground 文件:

在此处输入图片说明

我该如何解决这个问题?我怎样才能摆脱黑色背景?