添加一个 WebViewClient。这将阻止默认浏览器打开 URL(或在没有默认值时获得选择对话框)
myWebView.setWebViewClient(new WebViewClient());
更多信息可以在 Android 网站上找到:http: //developer.android.com/guide/webapps/webview.html
使用 WebViewClient,您可以执行更多操作,例如阻止加载 URL 或更改 URL。
private class MyWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if (Uri.parse(url).getHost().equals("www.example.com")) {
// This is my web site, so do not override; let my WebView load the page
return false;
}
// Otherwise, the link is not for a page on my site, so launch another Activity that handles URLs
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(intent);
return true;
}
}