アセットフォルダーのsimple.htmlページにCNNへのリンクがあるWebViewを使用して単純なhelloworldアプリを作成しました。
<a href="http://cnn.com">cnn.com</a>
アクティビティでこれをクリックしたことをキャプチャし、WebViewのナビゲートを停止して、アクティビティに「 http://CNN.com "がクリックされたことを通知するにはどうすればよいですか?
次に、 WebViewClient
をWebView
に設定し、 shouldOverrideUrlLoading
と onLoadResource
メソッド。簡単な例を挙げましょう。
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
}
}
}