我有一个加载链接的webview。我有一些Url,它们还包含其他Url。我想知道是否有可能,当用户点击webview中的网址时,该网址将被加载到另一个浏览器中,而不是在webview中?
答案 0 :(得分:1)
如果链接在您的网站中,则使用以下代码,它将在webview内打开,否则将打开一个新的浏览器:
webView.setWebViewClient(new WebViewClient(){
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;
}});
了解更多信息:http://developer.android.com/guide/webapps/webview.html#AddingWebView