无法更改我的Android应用程序的图标

问题描述 投票:0回答:3

首先,我将一些图标复制到mipmap(名为ic_launcher.png) - 没有用。

第二我右键点击res>new>image asset - 也没用。

我的manifest.xml代码是。

 <application
    android:name=".BlogI"
    android:allowBackup="true"
    android:icon="@mipmap/applicationicon"  // This even shows the right icon in right corner along with the line numbers
    android:label="@string/app_name"
    ......
    ......

我尝试了干净的项目并重新运行,重新启动我的android工作室(甚至我的电脑)也重新启动了我的Android设备。但是,以上都没有奏效。在提出这个问题之前,我尝试过其他类似的问Like this one.

如果有任何替代品,请建议!谢谢!

android android-studio android-manifest
3个回答
0
投票

首先将您的图像粘贴到drawable,然后在manifest.xml中添加以下代码

 <application
        android:name=".BlogI"
        android:allowBackup="true"
        android:icon="@drawable/your_Image"
        android:label="@string/app_name">`

它对我有用。


0
投票

我终于找到了解决办法!这是我的第三方发射器(Evie Launcher)没有更新图标。在我更换发射器后,这些图标在我的所有设备上运行良好。

感谢所有的建议和答案。


-1
投票

终于找到了我长期以来所做的错误。

只要确保在AndroidMainfest.xml中你已经设置了两个属性 - android:iconandroid:roundIcon

<application
    android:icon="@mipmap/app_icon"
    android:roundIcon="@mipmap/app_icon".../>

我只是设置android:icon并保持android:roundIcon不变。

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