In my code I want to add zoom in on double-tap and zoom out on two-fingers-tap (like Google Maps). I'm using this code:

gestureDetector = new GestureDetector(new DoubleTapDetector());
touchListener = new View.OnTouchListener() {
    public boolean onTouch(View view, MotionEvent motionEvent) {
        final int action = motionEvent.getAction();
        final int fingersCount = motionEvent.getPointerCount();

        if ((action == MotionEvent.ACTION_POINTER_UP) && (fingersCount == 2)) {
            onTwoFingersTap();

            return false;
        }

        return gestureDetector.onTouchEvent(motionEvent);
    }
};

Double-tap works fine, but when I trying to pinch map, it zoom as usual but zoom out by one step because of onTwoFingersTap(); is catched too.

How can I avoid this?

link|improve this question

feedback

1 Answer

return true if your condition is satified:

touchListener = new View.OnTouchListener() {    
public boolean onTouch(View view, MotionEvent motionEvent) {    
    final int action = motionEvent.getAction();       
    final int fingersCount = motionEvent.getPointerCount();        
    if ((action == MotionEvent.ACTION_POINTER_UP) && (fingersCount == 2)) {             
        onTwoFingersTap();       
        return true;         
    } 
 return gestureDetector.onTouchEvent(motionEvent);     
} 

};

link|improve this answer
If I change return value to True, something strange happens - MapView became white and markers on map shift are chaotically moving – skayred Nov 21 '11 at 5:14
That is strange. Returning true will just tell android not to process the onToucheEvent any furthur. Maybe you are doing something wrong in onTwoFingersTap(); – rDroid Nov 21 '11 at 5:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.