[android-developers] Re: Dailouge box disappears after flipping the device

2009-05-12 Thread Evan Charlton
Please do not do it this way. Dialogs should be shown using managed dialogs. Please consult the documentation, or see this link for an example: http://www.androidcompetencycenter.com/tag/activity-managed-dialogs/ Evan Charlton On Tue, May 12, 2009 at 8:16 AM, Android Users wrote: > Repeated pos

[android-developers] Re: Dailouge box disappears after flipping the device

2009-05-12 Thread Android Users
Repeated post.[?] Flipping the device would recreate the activity. So the dialog is getting dismissed. Override the method onConfigurationChanged(). and for the activity, set the configChangesparameter to "keyboardHidden|Orientation" in the manifest file. doing this, will not recreate the activity