How do I change the tint of an ImageButton on focus/press
问题 I have an ImageButton in my app and I need to change the tint of the image when the button is pressed/focused . I have the ImageButton set to get its src from an XML file which as follows: <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <!-- pressed --> <item android:state_pressed="true" android:tint="@color/black" android:drawable="@drawable/search" /> <!-- focused --> <item android:state_focused="true" android:tint="@color/black"