hi
In a list view i have an webview which should load a image file from the server,when there is no image present i need a dummy image .I tried

holder.image.setWebViewClient(new WebViewClient()
{
                  @Override
                public void onReceivedError( WebView view, int errorCode, String description, String failingUrl) 
                {

                    System.out.println("description error" + description);
                    view.setVisibility( View.GONE );

                }

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

                    view.setVisibility( View.VISIBLE );


                }


   }); 

I have this webview with an dummy image in a FrameLayout, onPageFinished listener is called after every image url is loaded, but onReceivedError is not called for a url which produce a 404 error.Any guess how to do it.

link|improve this question

65% accept rate
It seems that it can not be done: stackoverflow.com/questions/5124052/… – Peter Knego Mar 25 '11 at 15:16
I tried using HttpClient and on checking the HttpStatus i have loaded the url if the HttpStatus return error message then I restrain from loading url, instead display a no-image png.Is this method is a cumbersome,can any one suggest an alternative for this. – ganesh Mar 29 '11 at 11:07
It can't be done with WebView, you can however use the basic HTTPClient and check for the response code. Here is a link on how to do that: stackoverflow.com/questions/2592843/… – Machine Feb 2 at 17:44
feedback

3 Answers

That code looks correct; is it possible that your page is not generating a 404 error?

link|improve this answer
feedback
holder.image.setWebViewClient(new WebViewClient() { 

    @Override
    public void onReceivedError( WebView view, int errorCode,
                                 String description, String failingUrl) { 
      bReceivedError = true;
      view.setVisibility( View.GONE ); 
    }

    @Override 
    public void onPageFinished(WebView view, String url) { 
      if(!bReceivedError)
        view.setVisibility( View.VISIBLE ); 
    } 
  }); 
link|improve this answer
feedback

@Neeraj is on the right track, but my app allows a refresh of the webview, so I need to clear the error state before any new URL load. Furthermore, the error flag must be stored as a data member on the parent activity so that it persists during onPageStart() and onPageFinish()--those methods can be called after onError().

public class MyActivity extends Activity {
    private boolean isError;
    ...
    protected void onResume() {
        super.onResume();
        isError = false;
        myWebView.loadUrl(myUrl);
    }

    public class MyWebViewClient extends WebViewClient {
    /**
     * can be called even after error (embedded images?), so error flag must keep state as data-member in activity, cleared by activity before each loadUrl();          
     */
      @Override
      public void onPageFinished(WebView view, String url) {
        if (!isError)
            showContent();
      }

      @Override
      public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
        isError = true;
        showError();
      }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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