vote up 0 vote down star

Is there a way to always show the zoom controls on a MapView? I have added the zoom controls using

map=(MapView)findViewById(R.id.map);
map.setBuiltInZoomControls(true);

but the zoom controls fade in and out. I want them to always be visible.

flag

1 Answer

vote up 0 vote down check

Solved this by putting my own ZoomControls in my layout xml:

<ZoomControls android:id="@+id/zoomcontrols"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

and then setting up onClickListeners for then to handle the zoom:

	zoomControls = (ZoomControls) findViewById(R.id.zoomcontrols);
	zoomControls.setOnZoomInClickListener(new View.OnClickListener() {
		@Override
		public void onClick(View v) {
			mapController.zoomIn();
		}
	});
	zoomControls.setOnZoomOutClickListener(new View.OnClickListener() {
		@Override
		public void onClick(View v) {
			mapController.zoomOut();
		}
	});
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.