Show AlertDialog on Activity start, but not on screen orientation change?

Modify your AndroidManifest with: android:configChanges="orientation|keyboarddden Your Activity should look like this: activity android:name=".activities. MyActivity" android:label="@string/my_activity_name" android:configChanges="orientation|keyboarddden This will avoid the call to onCreate() when there is a change in the orientation.

Modify your AndroidManifest with: android:configChanges="orientation|keyboarddden" Your Activity should look like this: This will avoid the call to onCreate() when there is a change in the orientation.

It seems when screen orientation changes, the activity's onCreate() method is called. In my onCreate() method, I have an AlertDialog which pops up when the activity is called. The problem is when I switch the screen sideways, the popup is displayed again.

How can I avoid this?

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions