我注意到一些应用程序在任何设备上都是圆形的。
圆形图像
我希望我的应用程序也一样。但是 Image Asset 不允许为自适应图标选择透明背景。我试图将透明 png 图像设置为背景,但它在我的设备上填充黑色。
黑色图像
安卓清单:
<?xml version="1.0" encoding="utf-8"?>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
如何为所有主题和设备制作圆形图标?