选择器不适用于android中的ImageButton

时间:2013-03-26 19:50:32

标签: android xml selector imagebutton

我的选择器代码是:

<?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/mmb11" ></item>
    <item android:drawable="@drawable/mmb1"></item>

</selector>

我的xml文件4布局是:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/mmb"
    android:clickable="true" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="25dp"
        android:gravity="center"
        android:orientation="horizontal" 
        android:clickable="true">

        <ImageButton
            android:id="@+id/mmb1"
            android:layout_width="250dp"
            android:layout_height="80dp"
            android:background="@drawable/mmb1custom" 
            android:clickable="true"/>

        <ImageButton
            android:id="@+id/mmb5"
            android:layout_width="250dp"
            android:layout_height="80dp"
            android:background="@drawable/mmb5custom" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="115dp"
        android:gravity="center"
        android:orientation="horizontal" >

        <ImageButton
            android:id="@+id/mmb2"
            android:layout_width="250dp"
            android:layout_height="80dp"
            android:background="@drawable/mmb2custom" />

        <ImageButton
            android:id="@+id/mmb4"
            android:layout_width="250dp"
            android:layout_height="80dp"
            android:background="@drawable/mmb4custom" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="205dp"
        android:gravity="center"
        android:orientation="horizontal" >

        <ImageButton
            android:id="@+id/mmb3"
            android:layout_width="250dp"
            android:layout_height="80dp"
            android:background="@drawable/mmb3custom"
            android:gravity="center" />
    </LinearLayout>

</RelativeLayout>

按下时它不会改变图像,因为它假设... 你可以看到,我尝试设置点击.....但不工作 应用程序运行时没有错误....只是它没有显示按下的选择器4按钮.... 提前感谢...

0 个答案:

没有答案