Always show zoom controls on a MapView - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T02:36:39Zhttp://stackoverflow.com/feeds/question/920741http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/920741/always-show-zoom-controls-on-a-mapview0Always show zoom controls on a MapViewAshtonBRSC2009-05-28T13:08:33Z2009-06-05T12:49:21Z
<p>Is there a way to always show the zoom controls on a MapView? I have added the zoom controls using</p>
<pre><code>map=(MapView)findViewById(R.id.map);
map.setBuiltInZoomControls(true);
</code></pre>
<p>but the zoom controls fade in and out. I want them to always be visible.</p>
http://stackoverflow.com/questions/920741/always-show-zoom-controls-on-a-mapview/955653#9556530Answer by AshtonBRSC for Always show zoom controls on a MapViewAshtonBRSC2009-06-05T12:49:21Z2009-06-05T12:49:21Z<p>Solved this by putting my own ZoomControls in my layout xml:</p>
<pre><code><ZoomControls android:id="@+id/zoomcontrols"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</code></pre>
<p>and then setting up onClickListeners for then to handle the zoom:</p>
<pre><code> 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();
}
});
</code></pre>