I have an application when I click a button then execute AsyncTask in that onPreExecute show ProgressDialog code and in onPostExecute i am using dialog.dismiss().
In my manifest file I declare android:screenOrientation="portrait" in Activity, but when I click button start ProgressDialog and when change screen orientation it crashes.
After searching, I got this link How to handle screen orientation change when progress dialog and background thread active?.
But, I can't understand what I'm supposed to do.
android:configChanges="orientation"in activity tag in manifest file ? – Kartik Oct 12 '11 at 11:10android:screenOrientation="portrait"should work, there is likely something wrong in Manifest. You are using unmanaged dialogs. Try look atActivity.showDialog(int)for managed dialogs. Managed dialogs are saved when Activity is being recreated and then restored by Activity for you. – Salw Oct 12 '11 at 11:11onPostExecuteyou check first whether your dialog is showing or not. If yes then calldismiss();if(dialog.isShowing()) dialog.dismiss();– Kartik Oct 12 '11 at 11:14