我正在尝试制作一个应用程序,可以在 webview 中打开某个站点的所有网页,例如 www.yahoo.com,但在默认浏览器中打开所有其他网页。这是我正在使用但无法完全正常工作的代码。
private class MyWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if (Uri.parse(url).getHost().equals("http://www.yahoo.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;
}
}
在我看来,这段代码应该可以工作,但是当我加载雅虎时,它仍然会转到外部浏览器。任何帮助,将不胜感激。谢谢!