I have some code for setting the background for my buttons, but when I run the code, I don't see the effect of click in my buttons! Below, I show you my xml file for the background. Thanks!
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:left="5dp"
android:right="5dp"
android:top="5dp"
android:bottom="5dp"
>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#ffe49713">
</solid>
</shape>
</item>
</layer-list>