webview打开某个域的网站

时间:2013-02-10 20:07:49

标签: android webview

我正在尝试创建一个应用程序,打开某个网站的所有网页,例如www.yahoo.com,在webview中,但是在defaultbrowser中打开所有其他网页。这是我正在使用的代码,但不能让它工作。

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

在我看来这个代码应该可以工作,但是当我加载雅虎时,它仍然会转到外部浏览器。任何帮助,将不胜感激。谢谢!

3 个答案:

答案 0 :(得分:2)

这是一种不同的方法。

@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
    String urlHost = Uri.parse(url).getHost();
    switch (urlHost) {
        case "yahoo.com":
            return false;
        case "www.yahoo.com":
            return false;
        case "m.yahoo.com":
            return false;
        default:
            Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
            startActivity(intent);
            return true;
    }
}

答案 1 :(得分:1)

getHost()通常只返回域名,或者有时以www.为前缀。它永远不会包含http://协议AFAIK。尝试使用:

if ((Uri.parse(url).getHost().equals("yahoo.com")) ||  (Uri.parse(url).getHost().equals("www.yahoo.com")) ||  (Uri.parse(url).getHost().equals("m.yahoo.com"))) {
    //Your code

答案 2 :(得分:0)

尝试此方法应该对您有帮助

private WebView mWebview;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_yahoo);

        mWebview  = new WebView(this);

        mWebview.getSettings().setJavaScriptEnabled(true); // enable javascript

        final Activity activity = this;

        mWebview.setWebViewClient(new WebViewClient() {
            @SuppressWarnings("deprecation")
            @Override
            public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
                Toast.makeText(activity, description, Toast.LENGTH_SHORT).show();
            }
            @TargetApi(android.os.Build.VERSION_CODES.M)
            @Override
            public void onReceivedError(WebView view, WebResourceRequest req, WebResourceError rerr) {
                // Redirect to deprecated method, so you can use it in all SDK versions
                onReceivedError(view, rerr.getErrorCode(), rerr.getDescription().toString(), req.getUrl().toString());
            }
        });

        mWebview .loadUrl("http://www.yahoo.com");
        setContentView(mWebview );

    }

}