Saturday, January 2, 2016

Prevent webview from showing "web page not available"

Apply the below Code,

WebView.setWebViewClient(new WebViewClient() {
    public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
        WebView.loadUrl("file:///android_asset/myerrorpage.html");

    }
});

No comments:

Post a Comment