ImageButton must have android: background set.
<ImageButton
android:id="@+id/ibArrow"
android:layout_width="35px"
android:layout_height="50px"
android:src="@drawable/arrow"
android:background="@drawable/backgroundstate" />
And backgroundstate:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true" android:drawable="@color/transparent" />
<item android:state_pressed="true" android:drawable="@color/transparent" />
<item android:drawable="@color/transparent" />
</selector>
source
share