我为我的应用程序制作了一些图标,并在一些旧的三星 Galaxy 手机上对其进行了测试,结果显示图标是一个漂亮的方形。
出于某种原因,在较新的手机上 + 在模拟器上它显示一个白色圆圈,如下所示:
我的清单文件如下所示:
<application
android:allowBackup="false"
android:icon="@mipmap/ic_launcher_custom"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_custom_foreground"
android:supportsRtl="false"
android:theme="@style/CustomActivityTheme">
我的mimap是:
请问我该如何解决?
谢谢