Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to load a webpage.

private class MyJavaScriptInterface {

    private MyJavaScriptInterface () {
    }

    public void setHtml(String contentHtml) {

        if (contentHtml != null && contentHtml.trim().length() > 0) {
            //Do something
        }
    }
}
private WebViewClient webViewClient = new WebViewClient() {

    @Override
    public void onPageFinished(WebView view, String url) {

        view.loadUrl("javascript:window.ResponseChecker.setHtml"
            + "(document.body.innerHTML);");
        if (progressDialog != null && progressDialog.isShowing()) {
            progressDialog.dismiss();
        }
    }

    public void onReceivedSslError(WebView view, SslErrorHandler handler,
        SslError error) {
        handler.proceed();
    }

    public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
        Log.e("ProcessPayment", "onReceivedError = " + errorCode);
    }

};

I want to handle webpage loading errors. I know that the errors can be obtained in onReceivedError(...) method.

My problem is how can I handle the error without showing Page Not found in webview? (eg: Show a dialog and makes webview blank).

Thanks in Advance.

share|improve this question

1 Answer

up vote 1 down vote accepted

Check as:

 public void onReceivedError(WebView view, int errorCode, 
                           String description, String failingUrl) {
             Log.e("ProcessPayment", "onReceivedError = " + errorCode);

            //404 : error code for Page Not found
             if(errorCode==404){
               // show Alert here for Page Not found
               view.loadUrl("file:///android_asset/Page_Not_found.html");
             }
            else{

              }
           }
share|improve this answer
Is it possible to make the webview blank if any error occur? – Devu Soman Dec 5 '12 at 8:16
see my edit answer – ρяσѕρєя K Dec 5 '12 at 8:18
I showed an alert in onReceivedError. But the webview loads the the error page. – Devu Soman Dec 5 '12 at 8:20
@DevuSoman : in onReceivedError when error occur set WebView url to your on custom page as view.loadUrl("file:///android_asset/html_no_copy/Page_Not_found.html"); try this maybe solve your problem – ρяσѕρєя K Dec 5 '12 at 8:44
@DevuSoman : have u got me what i'm saying? – ρяσѕρєя K Dec 5 '12 at 8:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.