本文介绍了错误:没有资源发现,给定的名称相匹配(具有值在'图标“”@绘制/图标')!的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

错误:没有资源发现给定的名称相匹配(在图标,值为@绘制/图标')

这是我的表现......我非常新的这个,刚开始今天上午,并没有previous编程经验。此外,对于交code格式万分抱歉,我真的不擅长这个。

 <清单的xmlns:机器人=htt​​p://schemas.android.com/apk/res/android
包=com.asdf
安卓版code =1
机器人:=的versionName1.0><用途-SDK
安卓的minSdkVersion =8
机器人:targetSdkVersion =19/><应用
机器人:allowBackup =真
机器人:图标=@绘制/ ic_launcher
机器人:标签=@字符串/ APP_NAME
机器人:主题=@风格/ AppTheme>
< /用途>
<应用机器人:标签=@字符串/ APP_NAME机器人:图标=@绘制/图标>
<活动机器人:名字=为ExampleActivity
      机器人:标签=@字符串/ APP_NAME>
    &所述;意图滤光器>
    <作用机器人:名字=android.intent.action.MAIN/>
    <类机器人:名字=android.intent.category.LAUNCHER/>
&所述; /意图滤光器>
< /活性GT;
< /用途>< /清单>


解决方案

另一个Googlemare地雷....
不知何故,如果你陷入困境,你.gen文件的图标行死亡。 (挣扎后2小时我的经验证明)

在清单也将在华电国际文件夹中的新图标72x72不等#图标,从原来的一个不同的名称,并更新名称。

图标莫名其妙复活的根文件,瞧!离开的时候了。

Error : No resource found that matches the given name (at 'icon' with value '@drawable/icon').

This is my manifest... I'm extremely new to this, just started this morning and have no previous programming experience. Also, extremely sorry for post code formatting, i'm really bad at this.

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.asdf"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
</application>
<application android:label="@string/app_name" android:icon="@drawable/icon">
<activity android:name="ExampleActivity"
      android:label="@string/app_name">
    <intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>
解决方案

Yet another Googlemare Landmine....Somehow, if you mess up, the icon line on your .gen file dies. (Empirical proof of mine after struggling 2 hours)

Insert a new icon 72x72 icon on the hdpi folder with a different name from the original, and update the name on the manifest also.

The icon somehow resurrects on the Gen file and voila!! time to move on.

这篇关于错误:没有资源发现,给定的名称相匹配(具有值在'图标“”@绘制/图标')!的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 01:37