My goal is to create a simple CardView with white background AND having a ripple effect when clicking on it. By just enabling the ripple effect with:
android:clickable="true"
android:foreground="?android:attr/selectableItemBackground"
The ripple is shown. But at this point, the background is a dark grey. So let's change it to white
card_view:cardBackgroundColor="#FFFFFF"
Now my CardView is white, but there is no ripple anymore. No matter what I try, either I get only ripple, or only white background.
Hope you can help me! Thanks