I am using this method -
and returning true
or super.shouldOverrideUrlLoading(view,url);
my apologies for being naive but I didn't understand what is the difference in returning true or the super class method?
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
UltimatixTouchWebView webView = (UltimatixTouchWebView) view;
if (null != url && ((url.endsWith(".js") || url.endsWith(".css")))
&& (checkResource(url))) {
return true;
} else {
return super.shouldOverrideUrlLoading(view, url);
}
}