WebView

WebView webView = (WebView) findViewById(R.id.web_view);

// WebViewの設定をするためにWebSettingsオブジェクトを取得
WebSettings settings = webView.getSettings();

 

//ズーム機能の有効設定
settings.setSupportZoom(true);
settings.setBuiltInZoomControls(true);

 

//文字入力したい場合にキーボードを表示したい場合
webView.requestFocus(View.FOCUS_DOWN);

 

//戻るボタン
if (webView.canGoBack()) {
webView.goBack();
}

//進むボタン
if (webView.canGoForward()) {
webView.goForward();
}

 

//キャッシュを削除(完全に出来ない場合もあるけど)
webView.clearCache(true);

 

 

 

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です