How to detect double tap in RecyclerView item

3.2k Views Asked by At

I already have an OnClickListener when clicking on a RecyclerView item to open a new Activty. Now, I want to implement OnDoubleTap listener as well, but I'm not sure how.

Do I have to create a GestureDetector in the ViewHolder? On the other hand, isn't the RecyclerView gonna intercept the onTouch event because of the scroll?

1

There are 1 best solutions below

6
On BEST ANSWER