The webview client in android has public method
public class MyWebViewClient extends WebViewClient {
public MyWebViewClient () {
}
@Override
public void onLoadResource(WebView view, String url) {
something_happen_here
}
}
I setWebViewClient to myWebView
myWebView.setWebViewClient(new MyWebViewClient());
When I load an URL to myWebView, the method onLoadResource in class MyWebViewClient is loaded twice, i mean it goes to the line "something_happen_here" twice.
Anyone knows why is this happening? Thanks..