Android examples for User Interface:WebView
Tell the WebView to use the wide viewport and loads a page with overview mode.
//package com.java2s; import android.webkit.WebSettings; import android.webkit.WebView; public class Main { /**//from w ww. j a va 2s. com * Tell the WebView to use the wide viewport and loads a page with overview mode. * @param webview */ public static final void fitScreenWidth(WebView webview) { WebSettings ws = webview.getSettings(); ws.setUseWideViewPort(true); ws.setLoadWithOverviewMode(true); } }