在Android 7.1.1中放置启动器图标是否有任何特殊指导?
因为我在清单文件中添加了一个徽标,并在所有Android版本中显示,但不在我的手机中。有人知道吗?
在Manifest.xml中,请检查是否必须为android:icon="@mipmap/ic_app_icon"
和android:roundIcon="@mipmap/ic_app_icon"
设置图标:
这是完整的代码:
<application
android:allowBackup="true"
android:icon="@mipmap/ic_app_icon"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_app_icon"
android:supportsRtl="true"
android:theme="@style/AppTheme">