Reputation: 1056
I have an Android tab layout with three tabs, one of which has a mapview activity. Within this, I am using
mapView.setBuiltInZoomControls(true);
However, once I've activated the map, and then click on one of the other tabs in my tabwidget, the zoom controls remain in view. How can I get them to vanish when I'm not in the map tab?
I can't post an image, as I'm too new to StackOverflow.
Upvotes: 0
Views: 186
Reputation: 1056
Sorted - I had left in a rogue:
mapView.getZoomButtonsController().setAutoDismissed(false);
command that was several lines of code below the bit I was working on. My stupidity.
Upvotes: 2