i am displaying alert box in potrait mode..if i change to landscape alert box is not displaying and it is calling onDestroy() when i chnage mode..
can any one help me.
If you show dialogs using Activity.onCreateDialog()
method then activity will manage dialog creation for you. In other case you have to show and dismiss dialogs every time activity is destroyed and recreated.
Rotating your phone will cause the Activity to go through the lifecycle. You can take a look at this post to see how you can save and restore the state of your activity during orientation changes.