Addy
Addy

Reputation: 85

How detect double tap left and right in android on any type of view

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

Answers (1)

mrvovanda
mrvovanda

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

Related Questions