I want to intercept url request when user clicks on url. Following functions works fine for normal request.
public boolean shouldOverrideUrlLoading(WebView view, String url) {
//some code
}
But Ajax request doesn't get captured in above function. How to intercept Ajax requests?