Android Studio应用程序图标

问题描述 投票:2回答:2

(我已更新帖子)

这是我的项目方式:

表现:

    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:label="@string/app_name"

Mipmap:由New> Image Asset创建我选择了Launcher Icons(Adaptative和Legacy)

Icons

此外,当我打开其中任何一个时,我会看到我想要的图标:

Icon

现在,启动器图标工作得很好:

Launcher Icon

我遇到的问题是它不想更新我要选择其他应用程序时显示的图标。

Problem

android android-studio
2个回答
1
投票

您必须更新清单文件中的应用程序标记的两个属性。

   android:icon="@mipmap/ic_launcher" <-- Change this one
    android:roundIcon="@mipmap/ic_launcher_round" //<-- and this one

或者你可以删除

android:roundIcon="@mipmap/ic_launcher_round" //<-- and this one

确保您将所有mipmap / drawable放在正确的位置和所有dpi。

如果你还有问题,请联系我。


0
投票

转到您的应用程序文件夹并进入drawable。右键单击 - >新建 - >图像资产。

从那里,您可以根据给定的不同选项选择所需的图像类型。

© www.soinside.com 2019 - 2024. All rights reserved.