In API 11 or higher, you can use:
webview.getSettings().setBuiltInZoomControls(true); webview.getSettings().setDisplayZoomControls(false);
From API 11,
public void setDisplayZoomControls (boolean enabled)
Sets whether to use the zoom buttons on the screen. A combination of built-in zoom controls is turned on and off the zoom control buttons on the screen, which allows you to use zoom to zoom without using the controls on the screen.
See enable / disable scaling in Android WebView .
source share