Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Can you post your Manifest file? – Venky Oct 12 '11 at 11:06
have you added android:configChanges="orientation" in activity tag in manifest file ? – Kartik Oct 12 '11 at 11:10
3  
android:screenOrientation="portrait" should work, there is likely something wrong in Manifest. You are using unmanaged dialogs. Try look at Activity.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:11
Inside onPostExecute you check first whether your dialog is showing or not. If yes then call dismiss(); if(dialog.isShowing()) dialog.dismiss(); – Kartik Oct 12 '11 at 11:14
Yes i added. <activity android:name=".Homemenu" android:label="Home Menu" android:theme="@android:style/Theme.NoTitleBar" android:configChanges="orientation" android:screenOrientation="portrait" /> – kalpana Oct 12 '11 at 11:18
show 5 more comments

2 Answers

You can put a line android:screenOrientation="portrait" in your manifest or You can dismiss dialog in onDestoy() method of activity. for that you have to declare progressdialog globally and in onDestoy() check progress dialog

for example

if(progressDialog != null && progressDialog.isShowing()) {
progressDialog.dismiss();
progressDialog  = null;
}
share|improve this answer
1  
if(progressDialog != null && progressDialog.isShowing()) { progressDialog.dismiss(); //progressDialog = null; } this is working for me so +1 for you thanks for reply – kalpana Oct 12 '11 at 11:49
1  
Please mark this question as solved any of the answer worked for you – Kartik Oct 12 '11 at 11:51

This is because your Activity is trying to dismiss the dialog which has already lost its context.
android:configChanges="keyboardHidden|orientation" add this to your Activity in manifest.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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