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控件展示网页内容。