how do you make the button click more visible like the press animation while having a xml drawable resource file set as a background on the button.when you add a background to the button, it isn't clear that whether the button has been pressed or not. So, any solution for that?
my drawable resource file
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="rectangle">
            <solid android:color="#ca8924" />
            <corners
                android:radius="5dp"
                />
        </shape>
    </item>
    <item android:left="3dp" android:right="3dp" android:top="3dp" android:bottom="3dp">
        <shape android:shape="rectangle">
            <corners
                android:radius="5dp"
                />
            <solid android:color="#5c5656">
            </solid>
        </shape>
    </item>
</layer-list>
 
    