ImageViewをクリックすると、レイアウトの背景を変更したいのですが、これを行うにはどうすればいいですか?
<?xml version="1.0" encoding="utf-8"?>
<selector
xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:drawable="@drawable/blue_bar"
android:state_pressed="true"/>
<item
android:drawable="@drawable/gray_bg"/>
</selector>
XMLは
<ImageView
android:id="@+id/bookButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:onClick="reviewItineary"
android:src="@drawable/book" />