Always show zoom controls on a MapView - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T02:36:39Z http://stackoverflow.com/feeds/question/920741 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/920741/always-show-zoom-controls-on-a-mapview 0 Always show zoom controls on a MapView AshtonBRSC 2009-05-28T13:08:33Z 2009-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#955653 0 Answer by AshtonBRSC for Always show zoom controls on a MapView AshtonBRSC 2009-06-05T12:49:21Z 2009-06-05T12:49:21Z <p>Solved this by putting my own ZoomControls in my layout xml:</p> <pre><code>&lt;ZoomControls android:id="@+id/zoomcontrols" android:layout_width="wrap_content" android:layout_height="wrap_content" /&gt; </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>