0

レイアウトにボタンがあります。ボタンを押すと画像を変更する必要があります。セレクターxmlがあります。ボタンは次のとおりです。

<ImageButton
            android:id="@+id/cwcfwdvcs"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:clickable="true"
            android:layout_marginTop="16dp"
            android:background="@drawable/button_add_to_favorites_unactive"
            android:drawable="@drawable/add_to_favorites"
            android:text="Favotites"/>

セレクターadd_to_favorites.xmlは次のとおりです。

<animation-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:drawable="@drawable/button_add_to_favorites_active"
      android:state_checked="true" />
<item android:drawable="@drawable/button_add_to_favorites_unactive" />

4

1 に答える 1

0

次のコードのようなボタンセレクター状態を使用する必要がありますie(res / drawable / button.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/button_add_to_favorites_active">

</item>

<item android:state_focused="true" android:drawable="@drawable/button_add_to_favorites_active">

</item>

<item android:drawable="@drawable/button_add_to_favorites_active">        

</item>
</selector>
于 2012-06-18T13:22:53.273 に答える