找不到与给定名称匹配的资源(在'图标'与值....)

时间:2016-10-25 09:20:05

标签: android eclipse icons

我在eclipse中制作了一个Android应用程序,我想将其上传到Google Play商店。然而,商店说我需要添加一个Icon。我编写了图标,但它出现以下错误:

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

我不知道如何修复它,图像在我的drawable-hdpi文件夹中,拼写正确且一切。

有人能帮助我吗?

这是我的AndoidManifest代码:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.rodekruis"
    android:versionCode="1"
    android:versionName="1.0" >

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

    <application
        android:allowBackup="true"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme"
        android:icon="@drawable-hdpi/ic_launcher" >
        <activity
            android:name=".MainActivity"
             android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="android.intent.action.DEFAULT" />

                <category android:name="android.intent.category.MAINACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name=".BezoekActivity"
            android:label="@string/title_activity_bezoek" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.BEZOEKACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name=".AfspraakActivity"
            android:label="@string/title_activity_afspraak" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.AFSPRAAKACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name=".ContactActivity"
            android:label="@string/title_activity_contact" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.CONTACTACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name=".MeningActivity"
            android:label="@string/title_activity_mening" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.MENINGACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name=".RouteActivity"
            android:label="@string/title_activity_route" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.ROUTEACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name=".SpecialistenActivity"
            android:label="@string/title_activity_specialisten" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.SPECIALISTENACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name=".BWCActivity"
            android:label="@string/title_activity_bwc" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.BWCACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name=".AgendaActivity"
            android:label="@string/title_activity_agenda" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.AGENDAACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name=".InfoActivity"
            android:label="@string/title_activity_informatie" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.INFOACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name=".VriendActivity"
            android:label="@string/title_activity_vriend" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.VRIENDACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name=".FoldersActivity"
            android:label="@string/title_activity_folders" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.FOLDERSACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name=".NieuwsActivity"
            android:label="@string/title_activity_nieuws">
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.NIEUWSACTIVITY" />
            </intent-filter>
        </activity>
    </application>

</manifest>

enter image description here

4 个答案:

答案 0 :(得分:0)

在应用程序节点中尝试此android:icon="@drawable/ic_launcher"。系统将根据运行应用程序的设备的像素密度自动选择正确的可绘制文件夹(hdpi,xhdpi,...)。

答案 1 :(得分:0)

更改

 android:icon="@drawable-hdpi/ic_launcher"

android:icon="@drawable/ic_launcher"

答案 2 :(得分:0)

错误在下面一行

 android:icon="@drawable-hdpi/ic_launcher"

改为使用

android:icon="@drawable/ic_launcher"

它将自动获得最佳

答案 3 :(得分:0)

更改以下代码段

android:icon="@drawable-hdpi/ic_launcher"

android:icon="@mipmap/ic_launcher"

enter image description here