Add the onClick event to the layout and in the listener, change the background.
in xml
<LinearyLayout android:layout_height="FILL_PARENT"
android:layout_width="FILL_PARENT"
android:onClick="onClick" />
and in your work
public void onClick(View v) {
v.setBackgroundResource(R.drawable.someDrawable);
}
source
share