Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have not found any specific solution for hiding the default errors shown by webviews in Android. I am able to display my own custom error messages by trapping specific errors by their error codes.

The problem here is that before my Custom error messages show up I see the WebView errors for a split second and then my custom errors are displayed after that.

Following is a piece of code that does the error handling and display my own custom error messages :

protected void onPostExecute(String S) {

        mWebView.setWebViewClient(new WebViewClient() { 


            @Override
            public void onReceivedError(WebView view, int errCode, String errDescription, String failingUrl ) {

                view.clearView();

                Toast.makeText(getApplicationContext(), "Error code is "+errCode, Toast.LENGTH_SHORT).show();
                if(errCode == -2 || errCode == -8) {
                    view.loadData("There seems to be a problem with your Internet connection. Please try later", "text/html", "UTF-8");
                }

                if(errCode == -14) {
                    view.loadData("Page cannot be found on server", "text/html", "UTF-8");
                }

            }

        });

        mWebView.loadUrl(url);

        ShowProgress.dismiss();
    } 

Can someone suggest any modifications or advice on how hiding webview errors can be achieved and only my custom error messages get displayed? Thank you for stopping by and reading this post.

share|improve this question

2 Answers

Try to add this:

view.stopLoading();

Your source code will be like this:

protected void onPostExecute(String S) {

        mWebView.setWebViewClient(new WebViewClient() { 


            @Override
            public void onReceivedError(WebView view, int errCode, String errDescription, String failingUrl ) {

                try {
                       view.stopLoading();
                  } 
                catch(Exception e){}
                view.clearView();

                Toast.makeText(getApplicationContext(), "Error code is "+errCode, Toast.LENGTH_SHORT).show();
                if(errCode == -2 || errCode == -8) {
                    view.loadData("There seems to be a problem with your Internet connection. Please try later", "text/html", "UTF-8");
                }

                if(errCode == -14) {
                    view.loadData("Page cannot be found on server", "text/html", "UTF-8");
                }

            }

        });

        mWebView.loadUrl(url);

        ShowProgress.dismiss();
    } 
share|improve this answer
Thanks for your response. I tried it your way. Still I am facing the same issue. The original error still shows up for a split second. – Abhishek Sabbarwal Feb 1 at 6:21
Try going into this discussion code.google.com/p/android/issues/detail?id=2340 . It could helpd – Lazy Ninja Feb 1 at 6:27
Thanks. I had seen this and even thought about posting there. Finally, now I have left my comments. There seems to have been no updates on this since a long time now. Thanks for you time. – Abhishek Sabbarwal Feb 1 at 7:25
up vote 0 down vote accepted

I could not find a specific solution as this a bug #2340. So I am taking the webview out of the application and using the regular browser instead.

share|improve this answer

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.