因此,我将mipmap文件夹设置在res/目录中(例如/src/main/res/mipmap-mdpi等等),在清单中我为ic_launcher.png文件设置了android :图标=@mipmap/ic_launcher.png,但是当我按play按钮时,我仍然会在手机上看到那个android绿家伙。非常令人沮丧。有什么建议可以试试吗?
我试过卸载应用程序并清理项目
发布于 2015-07-17 19:23:13
我在清单文件中关闭了标记,所以它没有读取mipmap资源
应该是
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
>而不是
<application>
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"发布于 2018-09-13 23:40:19
我不确定这是否与我的问题相同,但我在mipmap-anydpi-v 26文件夹中删除了xml文件,之后它完成了它的工作。
发布于 2015-07-17 05:22:57
在Android中的包管理器中

https://stackoverflow.com/questions/31468335
复制相似问题