How to disable pinch in Android MapView
问题 How can you disable pinch or multitouch functionality in an Android MapView? 回答1: It took me a little time but I have a solution for this. What I did is stop the event propagation if more than one finger is touching the screen. mapView.setOnTouchListener(new OnTouchListener() { public boolean onTouch(View v, MotionEvent event) { if(event.getPointerCount() > 1) { return true; } return false; } }); 回答2: Disable all Gestures: mapView.getMap().getUiSettings().setAllGesturesEnabled(false); Disable