ProgressDialog in AsyncTask throws an exception
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 dia开发者_如何学运维log (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.
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();
}
try this
this.pd = ProgressDialog.show(this,"Loading...", "Please wait", true, false);
and yes I think the same the problem is with your context.
Use YourClassName.this
instead of using getApplicationContext()
or this.getApplicationContext()
精彩评论