I can get the zoom controls to show up and function with a WebView
but they are stuck in one place relative to the web page, so if you
zoom in too far they are off-screen.
Tried this
View zc = m_webview.getZoomControls();
RelativeLayout.LayoutParams p = new RelativeLayout.LayoutParams
(RelativeLayout.LayoutParams.WRAP_CONTENT,
RelativeLayout.LayoutParams.WRAP_CONTENT );
p.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM);
p.addRule(RelativeLayout.CENTER_HORIZONTAL);
m_webview.addView(zc, p);
but that had no effect...any ideas?
tia,
mike

