App图标不会显示在7.0以上的android设备中。它显示圆形默认启动器图标如何解决请提前感谢
答案 0 :(得分:4)
请在清单文件中设置圆形图标
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher"
android:supportsRtl="true"
android:theme="@style/AppTheme">
答案 1 :(得分:2)
应用程序现在可以定义圆形启动器图标,这些图标在支持它们的设备上使用。当启动器请求应用程序图标时,框架将返回android:icon
或android:roundIcon
,具体取决于设备构建配置。因此,应用应确保在响应启动器意图时定义android:icon
和android:roundIcon
资源。您可以使用Image Asset Studio设计round icons
。
有关此次点击的更多信息,请点击here。