When you create an android button, the original color is grey. when you press it, the color changes, when you release it, it goes back to it's original grey.
that's what I would like to do with mine, but with other colors than the default grey. The problem is, when I change the color of my button then I click on it, nothing happens, as if I was clicking on an empty layout.
Here's the XML file i wrote to solve my problem - button_connexion_style.xml
?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="#ff0000ff" android:state_focused="true" /> <!-- focused -->
<item android:color="#449D44"/> <!-- default -->
<item android:drawable="#278727" android:state_pressed="true"/>
</selector>
In my button XML code I do this to call the previous XML :
android:background="@drawable/button_connexion_style"
But it doesn't work.
If anyone can help, please let me know.
Create an xml file in your drawable like above, And set images/color accordingly and then set this xml as background of your imageButton.