レイアウトにボタンがあります。ボタンを押すと画像を変更する必要があります。セレクター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" />