Android报No resource found that matches the given name问题的解决

在Android开发时,新建一个Android Application Project后报 No resource found that matches the given name (at 'icon' with value '@drawable/  ic_launcher').的错误。试了很多办法,最后解决。错误截图如下:



Android报No resource found that matches the given name问题的解决_第1张图片


Android报No resource found that matches the given name问题的解决_第2张图片


最后发现是project(我的工程名字是love)下的res下的drawable(4个)文件下面没有一个名为ic_launcher的.png文件,然后自己在网上找了一个Android的logo截图后把这张截图(命名为AndroidLogo.PNG)分别复制到drawable(4个)文件夹中,然后就不报错了。

Android报No resource found that matches the given name问题的解决_第3张图片


你可能感兴趣的:(Java,Android)