I would love to enable touch feedback for my Open-Source library.
I\'ve created a RecyclerView and a CardView. The CardView co
RecyclerView
CardView
You have to add following lines in the layout that you are using under CardView
android:clickable="true" android:focusable="true" android:background="@drawable/my_ripple"
Example