Reputation: 704
I see that there is a setRippleColor method but I was wondering if I could avoid changing the color of the Floating Action Button programatically. Thanks for any help!
Upvotes: 3
Views: 921
Reputation: 11164
You may need to set clickable too.
app:rippleColor="@color/colorPrimaryDark"
android:clickable="true"
Upvotes: 1