我想禁用捏合控件来放大我的应用。我该怎么做呢?
答案 0 :(得分:1)
mapView = (MapView) findViewById(R.id.mapview);
mapView.setBuiltInZoomControls(false);
答案 1 :(得分:1)
禁用所有手势:
mapView.getMap().getUiSettings().setAllGesturesEnabled(false);
仅禁用缩放:
mapView.getMap().getUiSettings().setZoomControlsEnabled(false);