Touch feedback with RecyclerView and CardView

前端 未结 10 770
一向
一向 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:30

    Assuming you are using Material/Appcompat theme and Lollipop,I got this to work by making the CardView have the following attributes:

    android:focusable="true"
    android:clickable="true"
    android:foreground="?android:attr/selectableItemBackground"
    

提交回复
热议问题