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

There are a lot of discussions on this but quite frankly they are all pretty advanced and as a newbie to Android development I can't make this work.

I simply need nothing to change when the screen is rotated. My app displays a random image when it first loads and rotating the device should not select another random image. How can I (simply) make this behavior stop?

share|improve this question

6 Answers

up vote 19 down vote accepted

There are generally three ways to do this:

  1. As some of the answers suggested, you could distinguish the cases of your activity being created for the first time and being restored from savedInstanceState. This is done by overriding onSaveInstanceState and checking the parameter of onCreate.

  2. You could lock the activity in one orientation by adding android:screenOrientation="portrait" (or "landscape") to <activity> in your manifest.

  3. You could tell the system that you meant to handle screen changes for yourself by specifying android:configChanges="screenOrientation" in the <activity> tag. This way the activity will not be recreated, but will receive a callback instead (which you can ignore as it's not useful for you).

Personally I'd go with (3). Of course if locking the app to one of the orientations is fine with you, you can also go with (2).

share|improve this answer
1  
So for #3 are you saying all I have to do is add that line to my manifest? Because it doesn't work. – Escobar Ceaser May 6 '11 at 15:23
1  
Yeah, #3 has never worked for me either. – dmon May 6 '11 at 15:29
LOL so why do people keep posting it without testing it first? – Escobar Ceaser May 6 '11 at 15:32
ps... #2 doesnt work either. it just forces the app to display in a certain orientation. rotating the screen still reloads the activity. – Escobar Ceaser May 6 '11 at 15:42
#3 Please check on stackoverflow.com/questions/456211/… – Yeo Jul 4 '11 at 18:04
show 2 more comments

Xion's answer was close, but #3 (android:configChanes="orientation") won't work unless the application has an API level of 12 or lower.

In API level 13 or above, the screen size changes when the orientation changes, so this still causes the activity to be destroyed and started when orientation changes.

Simply add the "screenSize" attribute like I did below:

<activity>
    android:name=".YourActivityName"
    android:configChanges="orientation|screenSize">
</activity>

Now, when your change orientation (and screen size changes), the activity keeps its state and onConfigurationChanged() is called. This will keep whatever is on the screen (ie: webpage in a Webview) when the orientation chagnes.

Learned this from this site: http://developer.android.com/guide/topics/manifest/activity-element.html

Also, this is apparently a bad practice so read the link below about Handling Runtime Changes:

http://developer.android.com/guide/topics/resources/runtime-changes.html

share|improve this answer
thanks, its a great help. – SohailAziz May 10 at 20:41

It's my experience that it's actually better to just deal with the orientation changes properly instead of trying to shoehorn a non-default behavior. Why don't you save the image that's currently being displayed in onSaveInstanceState() and restore it properly when your application runs through onCreate() again?

share|improve this answer

Just add this to your AndroidManifest.xml

<activity android:screenOrientation="landscape">

I mean, there is an activity tag, add this as another parameter. In case if you need portrait orientation, change landscape to portrait. Hope this helps.

share|improve this answer
im not looking to take away the ability to rotate the screen. i just dont want my app to reload... as i mentioned. – Escobar Ceaser May 6 '11 at 15:11
ps... this doesnt work anyway. it just forces the app to display in a certain orientation. rotating the screen still reloads the activity – Escobar Ceaser May 6 '11 at 15:41

Save the image details in your onPause() or onStop() and use it in the onCreate(Bundle savedInstanceState) to restore the image.

EDIT:

More info on the actual process is detailed here http://developer.android.com/reference/android/app/Activity.html#ActivityLifecycle as it is different in Honeycomb than previous Android versions.

share|improve this answer

just use :android:configChanges="keyboardHidden|orientation"

share|improve this answer
Some explanation of what the code does would be helpful. – Miguel-F Feb 7 at 20:37

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.