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?
Yes, best way to achieve this is by using GestureDetector. See sample code: