“找不到与给定名称匹配的资源”

时间:2015-02-06 22:12:49

标签: java android xml eclipse

我有一个充满错误的大型控制台,所有相同的错误。

[2015-02-07 08:33:42 - TheHunter] C:\Users\Windows 8\workspace\TheHunter\res\drawable-hdpi\custom2.xml:4: error: Error: No resource found that matches the given name (at 'drawable' with value '@drawable/button2').

[2015-02-07 08:33:42 - TheHunter] C:\Users\Windows 8\workspace\TheHunter\res\drawable-hdpi\custom3.xml:4: error: Error: No resource found that matches the given name (at 'drawable' with value '@drawable/button3').

我有相同的错误但在我的控制台中有大约100次不同的图像。 这只是我的主页面的一小部分代码,我有几个按钮和图像正在使用,但仍然有所有相同的错误。由于这些错误,我看到所有图片都不允许我在Android模拟器中使用该应用程序。

你能否告诉我为什么会收到这些错误?谢谢。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background"
    tools:context="com.application.thehunter.MainActivity" >

    <ImageButton
        android:id="@+id/imageButton1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginTop="74dp"
        android:contentDescription="TODO"
        android:background="@drawable/custom1"
        android:src="@drawable/Button1"
        tools:ignore="HardcodedText,ContentDescription" />

    <ImageButton
        android:id="@+id/imageButton2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/imageButton1"
        android:contentDescription="TODO"
        android:background="@drawable/custom2"
        android:src="@drawable/Button2"
        tools:ignore="HardcodedText,ContentDescription" />

1 个答案:

答案 0 :(得分:1)

资本是问题的一部分。资源名称必须是小写,数字或以字母开头的下划线。另外,请仔细检查您确实拥有名为的文件。