Reputation: 85
last two days i search this query but i cannot find any solution. I ant to detect the double tap left and right on exoplayer video. I used gesturedetector to check double tap but i cannot find a way to detect left and right double tap.
Upvotes: 0
Views: 945
Reputation: 66
1) You could get coords of tap from MotionEvent object, calculate center of target view (via x,y, height, width) and then handle this data;
2) You could use two transparent overlays and set listeners to them )
Upvotes: 3