Android WebView - 拦截点击次数

时间:2010-07-14 20:08:35

标签: android webview

我编写了一个带有WebView的简单helloworld应用程序,该应用程序在我的资产文件夹的simple.html页面上有一个指向CNN的链接。

<a href="http://cnn.com">cnn.com</a>

如何捕获我的活动上的点击,停止WebView导航,然后通知活动点击了“http://CNN.com”?

1 个答案:

答案 0 :(得分:70)

然后,您必须为WebView设置WebViewClient并覆盖shouldOverrideUrlLoadingonLoadResource方法。让我举个简单的例子:

WebView yourWebView; // initialize it as always...
// this is the funny part:
yourWebView.setWebViewClient(yourWebClient);

// somewhere on your code...
WebViewClient yourWebClient = new WebViewClient(){
    // you tell the webclient you want to catch when a url is about to load
    @Override
    public boolean shouldOverrideUrlLoading(WebView  view, String  url){
        return true;
    }
    // here you execute an action when the URL you want is about to load
    @Override
    public void onLoadResource(WebView  view, String  url){
        if( url.equals("http://cnn.com") ){
            // do whatever you want
        }
    }
}