I\'d like to show an error message when there is an error loading a webview page (No connection). This is what I have so far, without the error handling code:
All answer above are deprecated. You should use this code after on Page finished
@Override
public void onReceivedError(WebView view, WebResourceRequest request, WebResourceError error){
//Your code to do
Toast.makeText(getActivity(), "Your Internet Connection May not be active Or " + error.getDescription(), Toast.LENGTH_LONG).show();
}