无法替换android studio中的默认图标

时间:2015-05-31 23:49:50

标签: android file android-studio icons

我试图替换默认图标的图像是512x512px .p​​ng。 要更改图标,我去app / res [new;图像资产; ...]。 它不会让我在@drawable中替换或创建新的图标集。 我最近的想法是,我可能没有解锁一些priveges但我可以通过直接访问它的位置来编辑drawable的内容

有什么想法吗?

4 个答案:

答案 0 :(得分:5)

将您的图标放在drawable文件夹中,然后只需打开AndroidManifest.xml文件,然后设置您想要的图标......

<application
    android:icon="@drawable/icon"
    .... >

答案 1 :(得分:3)

android studio的新版本在mipmap-xxx目录中放置了默认启动器图标(ic_launcher.png),因此只需将新图标复制并粘贴到这些直播中,并将其引用为&#39; @ mipmap / you_icon&#39 ;或代码&#39; R.mipmap.you_icon&#39;。如果您仍想使用关键字&#39; drawable&#39;,则创建可绘制文件夹(drawable-xxx),并将您的图标放在那里,并将其引用为&#39; @ drawable / you_icon&#39;,或者在代码“R.drawable.you_icon&#39;

答案 2 :(得分:0)

正如你所写的那样

  

app / res [new;图像资产; ...]

你的意思是图像上的这个吗?它显示了什么具体错误? 只需确保您的图标名称在清单android:icon="@mipmap/youricon"

中相同

Asset Studio

答案 3 :(得分:0)

步骤1.将图标图像从mipmap复制到可绘制文件夹并构建项目。

步骤2.在AndroidManifest.xml中更改以下代码

<application
    android:icon="@drawable/ic_launcher"