我的选择器代码是:
<?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 按钮....提前谢谢...