mapView.setGestureDetector allows
adding an external GestureDetector (see
here
its call inside MapView) which allows interfering the default one.
Can be used like:
mapView.setGestureDetector(new GestureDetector(context, new
SimpleOnGestureListener() {
...
}));
Mapsforge TouchGestureHandler handles all MapView gestures and is
initialized by it.
Having more than one of them processing the same gestures can
lead to malfunctions.
It's not a listener with empty method bodies to override, but a
full implemented class.