Skip to content

Tag: android-recyclerview

How to add long click listener on recyclerview adapter?

I already implemented onClick now I want to add onLongClick , I searched non of the solutions matched my case, because my adapter is setup differently Adapter my Fragment Answer You need to add a 2nd method to your interface to represent the long click event. Then, within onBindViewHolder, add vh.itemView.set…