Adding Ripple Effect to RecyclerView item

前端 未结 6 1829
后悔当初
后悔当初 2020-11-28 02:17

I am trying to add Ripple Effect to RecyclerView\'s item. I had a look online, but could not find what I need. I assume it has to be a custom effect. I have tried android:ba

6条回答
  •  执念已碎
    2020-11-28 02:35

    add this lines in your adapter xml root view

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

提交回复
热议问题