Android webview - 如何跳过网址?

时间:2016-10-24 12:17:11

标签: android webview

我有自定义webview客户端的webview。我正在拦截请求:

@Override
public WebResourceResponse shouldInterceptRequest(WebView view, String url) {
    // ...
}

有时我会以链接的形式从webview获取有关自定义事件的信息:

  

XYZ://做出头

当它发生时,我希望webview忽略它。但'shouldInterceptRequest'必须返回一些东西,当我返回'null'而不是我的页面时,它会显示:'unknown url xyz:// do-something'。我该怎么处理?如何拦截链接但在webview端禁用操作?

1 个答案:

答案 0 :(得分:0)

您只需要从您所在的网站和您想要访问的网站进行字符串比较。

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