Disable scrolling in Osmdroid map

2019-06-01 01:38发布

问题:

I have an Osmdroid MapView. Even though I have set

mapView.setClickable(false);
mapView.setFocusable(false);

the map can still be moved around. Is there a simple way to disable all interactions with the map view?

回答1:

I've found a solution. You need to handle the touch events directly by setting a OnTouchListener. For example,

public class MapViewLayout extends RelativeLayout {

    private MapView mapView;

    /**
     * @see #setDetachedMode(boolean)
     */
    private boolean detachedMode;

    // implement initialization of your layout...

    private void setUpMapView() {
       mapView.setOnTouchListener(new OnTouchListener() {
            @Override
            public boolean onTouch(View v, MotionEvent event) {
                if (detachedMode) {
                    if (event.getAction() == MotionEvent.ACTION_UP) {
                        // if you want to fire another event
                    }

                    // Is detached mode is active all other touch handler
                    // should not be invoked, so just return true
                    return true;
                }

                return false;
            }
        });
    }

    /**
     * Sets the detached mode. In detached mode no interactions will be passed to the map, the map
     * will be static (no movement, no zooming, etc).
     *
     * @param detachedMode
     */
    public void setDetachedMode(boolean detachedMode) {
        this.detachedMode = detachedMode;
    }
}


回答2:

A simple solution is to do like @Schrieveslaach but with the mapView:

mapView.setOnTouchListener(new View.OnTouchListener() {
    @Override
    public boolean onTouch(View v, MotionEvent event) {
        return true;
    }
});


回答3:

You could try:

mapView.setEnabled(false); 

Which should disable all interactions with the map view