I am using the following code

class CustomWebViewClient extends WebViewClient {
    Context context;
    ProgressDialog pd = null;


    public CustomWebViewClient (Context c){
        context = c;
    }

    public void onPageFinished(WebView view, String url){
        pd.dismiss();
    }



    public boolean shouldOverrideUrlLoading(final WebView view, final String url) {
        pd = ProgressDialog.show(context, "", "pageload. Please wait...", true);


        view.loadUrl(url);  

        return true;
    } 

}

When I click a link in the WebView, the dialog appears and the page begins to load, however when the page is finished loading, the dialog is still on the screen. Obviously the code is simple enough, but I cant figure this out. Also, I guess I should add that the links being clicked have a few redirects, but I am not sure if that is related to the cause here.

How can I do this right?

Thanks

link|improve this question

having the same problem! – Sander Versluys Dec 27 '10 at 9:23
feedback

3 Answers

up vote 2 down vote accepted
+25

Steven & Sander , try dismissing the progress dialog in a Handler

Something like this

  class pdHandler extends Handler {
    @Override
    public void handleMessage(Message msg) {
      if(pd != null)
      {
      pd.dismiss();
      pd = null;
      }
    }

& then call your handler in onPageFinshed

 public void onPageFinshed(WebView view, String url){
        pdHandler.sendEmptymessage(0);
    }

& you are done!

link|improve this answer
feedback

You missed @Override annotation.

Here is right code:

class CustomWebViewClient extends WebViewClient {
    Context context;
    ProgressDialog pd = null;

    public CustomWebViewClient(Context c){
        context = c;
    }

    @Override
    public void onPageFinished(WebView view, String url){
        if (pd != null && pd.isShowing())
        {
            pd.dismiss();
        }
    }

    @Override
    public boolean shouldOverrideUrlLoading(final WebView view, final String url) {
        pd = ProgressDialog.show(context, "", "pageload. Please wait...", true);
        view.loadUrl(url);  
        return true;
    } 
}

This code works, but progress dialog does't appears on initial loading. If you need it, add this code to the class' constructor:

pd = ProgressDialog.show(context, "", "pageload. Please wait...", true);
link|improve this answer
1  
The @Override is merely a message to the compiler, it has no effect on the functionality of the code. – satur9nine Jan 3 '11 at 0:07
feedback

This does work, you spelled Finished wrong, you wrote "onPageFinshed"

link|improve this answer
Fixed, thanks for the heads up – Señor Reginold Francis Jan 10 at 20:57
feedback

Your Answer

 
or
required, but never shown

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