Touch feedback with RecyclerView and CardView

前端 未结 10 775
一向
一向 2020-12-07 09:32

I would love to enable touch feedback for my Open-Source library.

I\'ve created a RecyclerView and a CardView. The CardView co

10条回答
  •  一个人的身影
    2020-12-07 10:10

    In my case, i was need to show custom background and ripple effect as well. So the way I achieved this is by applying these two attributes on the root layout of my recycler-view item:

    android:background="@drawable/custom_bg"
    android:foreground="?android:attr/selectableItemBackground"
    

提交回复
热议问题