无法解析属性“src”中的drawable

时间:2011-02-24 18:27:29

标签: android xml button imagebutton src

尝试使用drawable-mdpi文件夹中的xml文件将各种图像加载到图像按钮时遇到问题。它适用于一个按钮,但不适用于另一个按钮。该代码适用于第二个图像按钮但不适用于第一个,我收到错误,

  

“main.xml:无法解析drawable   在“C:... workspace \ AndroidAlarm \ res \ drawable-mdpi \ keyEntry.xml”中   属性“src”。

我在第一个imageButton做了完全相同的事情,我为第二个做了。第二个按钮(工作一个)的xml文件如下所示:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
 <item android:state_pressed="true"
       android:drawable="@drawable/events_pressed" /> <!-- pressed -->
 <item android:drawable="@drawable/events" /> <!-- default -->
</selector>

并且对于不起作用的那个,它看起来像:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
 <item android:state_pressed="true"
       android:drawable="@drawable/key_entry_pressed" /> <!-- pressed -->
 <item android:drawable="@drawable/key_entry" /> <!-- default -->
 </selector>

两者之间的唯一区别是传入的图像。所有图像都在drawabl-mdpi文件夹中找到。我无法弄清楚为什么它适用于第二个图像按钮而不是第一个。两个按钮的xml代码如下所示:

        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1">
            <ImageButton
                android:id="@+id/imagebutton1"
                android:src="@drawable/keyEntry"
                android:background = "@android:color/transparent"               
                android:layout_width = "wrap_content"
                android:layout_height = "wrap_content"
                android:scaleType = "fitXY"
                android:layout_marginTop = "50px"
                android:layout_marginLeft = "40px"
                android:layout_marginRight = "20px"
                android:layout_marginBottom = "50px"
                android:layout_weight="1"/>
            <ImageButton 
                android:layout_marginTop="50px"
                android:layout_width="wrap_content"
                android:layout_marginRight="40px"
                android:id="@+id/imagebutton2"
                android:layout_weight="1" 
                android:src="@drawable/events" 
                android:layout_height="wrap_content" 
                android:background="@android:color/transparent" 
                android:layout_marginLeft="20px" 
                android:layout_marginBottom="50px" 
                android:scaleType="fitXY">
             </ImageButton>
         </LinearLayout>  

提前致谢!

1 个答案:

答案 0 :(得分:1)

资源不能包含大写字母:

    android:src="@drawable/keyEntry"

您应该有错误抱怨资源名称:

    Invalid file name: must contain only [a-z0-9_.]