It is necessary to remove the zoom
buttons in the webView
Android, while the zoom works. Did so:
settings.setSupportZoom(true); settings.setBuiltInZoomControls(true); if (API >= 11) { settings.setDisplayZoomControls(false); settings.setAllowContentAccess(true); }
In Android < 4.0
everything is perfect. In 2.x there are zoom buttons. If settings.setBuiltInZoomControls
declare false
, then the buttons will go away and the zoom
will turn off. Options?