Android – Google Maps api v2 – Disable Zoom control

the setting you used is right, but to disable it, it should be false.

map.getUiSettings().setZoomControlsEnabled(false);

hope I got your question right..

Edit

Unfortunately, you can’t hide one zoom buttons, what you can do is hide both buttons and create your own custom zoom control and place them on the your map.

Leave a Comment