我有一个像这样的安卓代码:
WebView myWebView = (WebView) findViewById(R.id.webView1);
WebSettings webSettings = myWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
myWebView.loadUrl("http://test.com");
问题是,当我启动应用程序时,它会在新的浏览器中打开,而不是在我的应用程序的webView中。
如何避免这种情况?
答案 0 :(得分:1)
添加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;
}
}