1

私のセレクターコードは次のとおりです。

<?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つのボタンを押しました....よろしくお願いします...

4

0 に答える 0