Skip to content
Advertisement

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

JavaScript

my Fragment

JavaScript

Advertisement

Answer

You need to add a 2nd method to your interface to represent the long click event. Then, within onBindViewHolder, add vh.itemView.setOnLongClickListener(...) in which you call that 2nd method.

Edit:

Your interface should now look like this:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement