Can't dismiss ProgressDialog after the AsyncTask complete
问题 Please help, I can't dismiss ProgressDialog after AsyncTask complete. I searched for the answer but nothing found. This code works fine when I use Thread instead of AsyncTask. Have any ideas? Context appContext; ProgressDialog pd; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); appContext=this; MyTask myTask=new MyTask(); myTask.execute(); } class MyTask extends AsyncTask<Void, Void, Void> { @Override protected void onPreExecute() { pd =