答案 0 :(得分:2)
您还需要使用 android:roundIcon="@mipmap/ic_launcher_round"
启动器请求应用程序图标时,框架会返回android:icon或android:roundIcon,具体取决于设备的构建配置。因此,应用在响应启动器意图时应确保同时定义android:icon和android:roundIcon资源。
<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">
答案 1 :(得分:0)
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"`