Android中使用WebView控件展示網頁內容的方法如下:
<WebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
WebView webView = findViewById(R.id.webView);
webView.getSettings().setJavaScriptEnabled(true); // 啟用JavaScript
webView.loadUrl("https://www.example.com"); // 加載指定網頁
webView.setWebChromeClient(new WebChromeClient() {
// 處理網頁加載進度等事件
});
webView.setWebViewClient(new WebViewClient() {
// 處理網頁加載完成、失敗等事件
});
webView.goBack(); // 后退
webView.goForward(); // 前進
webView.reload(); // 刷新
通過以上方法,可以在Android應用中使用WebView控件展示網頁內容。