When you look at other apps like yPlan or Google Play Store, their ripple effect on buttons is like a light grey or black that does not change the colour of the whole button.
I want this same effect.
Here is what i tried but its not the same
This is my colour control highlight: Its a grey with 99% alpha
<color name="colorHighlight">#fc8c969f</color>
And this is my ripple drawer for my button
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="?android:colorControlHighlight">
<item android:id="@android:id/mask" android:drawable="@android:color/white"/>
<item android:drawable="@color/colorAccentWith92PercentOpacity"/>
</ripple>
Note the drawable is to make the colour of the button yellow since i cant use android:background twice