I assume that you are looking for built-in support for scaling, this will solve the following:
WebView web = (WebView) findViewById(R.id.webview);
web.getSettings().setBuiltInZoomControls(true);
web.getSettings().setSupportZoom(true);
Good luck. "
source
share