web-dev-qa-db-ja.com

Android WebView-クリックを傍受する

アセットフォルダーのsimple.htmlページにCNNへのリンクがあるWebViewを使用して単純なhelloworldアプリを作成しました。

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

アクティビティでこれをクリックしたことをキャプチャし、WebViewのナビゲートを停止して、アクティビティに「 http://CNN.com "がクリックされたことを通知するにはどうすればよいですか?

27
Ian Vink

次に、 WebViewClientWebViewに設定し、 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
        }
    }
}
71
Cristian