I'm trying to make a simple ProgressDialog appear while my AsyncTask is fetching data. In my onPreExecute() method I have this:

pd = ProgressDialog.show(c, "Loading...", "Please wait");

c is the context passed into the constructor of my AsyncTask from this.getApplicationContext(). Unfortunately, I keep getting an exception with this message:

Unable to add window -- Token null is not for an application

What am I doing wrong?

Update: Using this instead of this.getApplicationContext() has revealed another problem. When I call ProgressDialog.show(..., a ProgressDialog is displayed, but not until after the AsyncTask has completed. In other words, the data loads and then the dialog is displayed. If I include pd.dismiss() in my onPostExecute() then I never even see the dialog (presumable because it is closed before it ever gets opened).

Final solution: It turns out that fetch.get() was hogging the UI thread and not letting the ProgressDialog display.

link|improve this question

This question has been answered stackoverflow.com/questions/1561803/… – Ally Jun 26 '10 at 8:29
1  
Ally - Thanks, but I'm not sure its the exactly the same issue. The accepted solution is about an Android bug that was supposedly fixed in 1.6 (I'm using 2.1). I did find another solution, which is to create a static method in the main activity to display the ProgressDialog. This has the same issue, where the dialog is not being displayed until AFTER the data has already been loaded. – Computerish Jun 26 '10 at 22:40
feedback

2 Answers

up vote 3 down vote accepted
ProgressDialog dialog;
@Override
    protected void onPreExecute() {
        dialog = new ProgressDialog(viewContacts.this);
        dialog.setMessage(getString(R.string.please_wait_while_loading));
        dialog.setIndeterminate(true);
        dialog.setCancelable(false);
        dialog.show();
    }
link|improve this answer
This gives the exact same exception. – Computerish Jun 25 '10 at 21:52
2  
Then is something wrong with your Context. Change that from this.getApplicationContext() to just this when you pass it. Or if the AsyncTask is private to a Context class, just use the reference to the outer class as MyClass.this – Pentium10 Jun 25 '10 at 22:05
Using this instead of this.getApplicationContext() gets rid of the exception, but no dialog is displayed. (pd.dismiss() in onPostExecute also runs without error.) – Computerish Jun 26 '10 at 2:39
@Computerish try looking into the samples in your SDK folder, and above my example, it simply works for an Activity that has no dialogs displayed – Pentium10 Jun 26 '10 at 8:24
Using this instead of this.getApplicationContext() has revealed another problem. When I call ProgressDialog.show(..., a ProgressDialog is displayed, but not until after the AsyncTask has completed. In other words, the data loads and then the dialog is displayed. If I include pd.dismiss() in my onPostExecute() then I never even see the dialog (presumable because it is closed before it ever gets opened). – Computerish Jun 26 '10 at 22:41
show 8 more comments
feedback

try this

  this.pd = ProgressDialog.show(this,"Loading...", "Please wait", true, false);

and yes I think the same the problem is with your context.

link|improve this answer
Using this instead of this.getApplicationContext() gets rid of the exception, but no dialog is displayed. (pd.dismiss() in onPostExecute also runs without error.) – Computerish Jun 26 '10 at 2:39
Using this instead of this.getApplicationContext() has revealed another problem. When I call ProgressDialog.show(..., a ProgressDialog is displayed, but not until after the AsyncTask has completed. In other words, the data loads and then the dialog is displayed. If I include pd.dismiss() in my onPostExecute() then I never even see the dialog (presumable because it is closed before it ever gets opened). – Computerish Jun 26 '10 at 22:38
feedback

Your Answer

 
or
required, but never shown

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