如何避免在同一webview中打开webview链接

时间:2012-11-27 06:41:14

标签: android android-webview

当用户点击webview中的链接时。我想显示一个对话框,询问用户是否要在默认浏览器中查看它,如果他选择YES,那么他应该被带到默认浏览器,否则它根本不应该加载链接。
但是,我面临的问题是,我能够在run()覆盖方法WebViewClient's的{​​{1}}内显示对话框。当用户选择YES时,我正在shouldOverrideUrlLoading()将其显示在默认浏览器中。但是,无论用户选择是/否,它都会在startActivity(new Intent(Intent.ACTION_VIEW,Uri.parse(url)));中显示我想要避免的链接。任何建议表示赞赏...... TIA

2 个答案:

答案 0 :(得分:1)

WebView myWebView = (WebView) findViewById(R.id.webview);
myWebView.setWebViewClient(new WebViewClient());

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;
    }
}

http://developer.android.com/guide/webapps/webview.html

答案 1 :(得分:0)

我通过在shouldOverrideUrlLoading()方法中重新加载相同的URL解决了这个问题。谢谢你的建议