I\'m trying to implement a double-tap zoom like function in my MapView. The event always fires the first time, but never subsequent times. Below is my code. I have a feeling
you should at least put
lasttime=event.getEventTime();
under the
if (event.getAction() == MotionEvent.ACTION_DOWN) brakes
while onTouch detect ACTION_UP event of your click. So any time you make a click it is called 2 times
onTouch
ACTION_UP