Android中的启动器图标未显示

问题描述 投票:-1回答:1

在Android 7.1.1中放置启动器图标是否有任何特殊指导?

因为我在清单文件中添加了一个徽标,并在所有Android版本中显示,但不在我的手机中。有人知道吗?

android android-launcher graphical-logo
1个回答
2
投票

在Manifest.xml中,请检查是否必须为android:icon="@mipmap/ic_app_icon"android:roundIcon="@mipmap/ic_app_icon"设置图标:

enter image description here

这是完整的代码:

 <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">
© www.soinside.com 2019 - 2024. All rights reserved.