我使用 Android Studio 3.0.1 更改了我的应用程序启动器图标:
File -> Image Asset
在 Android 8.1 中,图标如下图所示:
我的 AndroidManifest
详情
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:hardwareAccelerated="true"
android:supportsRtl="true"
android:theme="@style/AppTheme">
我仔细检查了图标。 ic_launcher
和 ic_launcher_round
是我的新图标。
原文由 CLIFFORD P Y 发布,翻译遵循 CC BY-SA 4.0 许可协议
我通过改变解决了我的问题
到
在项目中
build-gradle
这会导致调味问题,可以通过添加来解决
在应用中
build-gradle
这可能会帮助一些有同样问题的人。