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:
public void onReceivedError(WebView view, int errorCod,String description, String failingUrl) {
Toast.makeText(Webform.this, "Your Internet Connection May not be active Or " + description , Toast.LENGTH_LONG).show();
}