In my Android application, when I rotate the device (slide out the keyboard) then my activity is restarted (onCreate is called). Now, this is probably how it's supposed to be, but I do a lot of initial setting up in the onCreate method, so I need either:
1. Put all the initial setting up in another function so it's not all lost on device rotation or
2. Make it so onCreate is not called again and the layout just adjusts or
3. Limit the app to just portrait so that onCreate is not called.

link|improve this question

feedback

11 Answers

up vote 259 down vote accepted

Using the Application Class

Depending on what you're doing in your initialization you could consider creating a new class that extends Application and moving your initialization code into an overwridden onCreate method within that class.

public class MyApplicationClass extends Application {
  @override
  public void onCreate() {
    super.onCreate();
    // TODO Put your application initialization code here.
  }
}

The onCreate in the application class is only called when the entire application is created, so the Activity restarts on orientation or keyboard visibility changes won't trigger it.

It's good practice to expose the instance of this class as a singleton and exposing the application variables you're initializing using getters and setters.

NOTE: You'll need to specify the name of your new Application class in the manifest for it to be registered and used.

Reacting to Configuration Changes

As a further alternative, you can have your application listen for events that would cause a restart – like orientation and keyboard visibility changes – and handle them within your Activity.

Start by adding the android:configChanges node to your Activity's manifest node

android:configChanges="keyboardHidden|orientation"

Then within the Activity override the onConfigurationChanged method and call setContentView to force the GUI layout to be re-done in the new orientation.

@Override
public void onConfigurationChanged(Configuration newConfig) {
  super.onConfigurationChanged(newConfig);
  setContentView(R.layout.myLayout);
}
link|improve this answer
2  
Thank you - very descriptive! – Isaac Waller Jan 20 '09 at 0:10
4  
Glad I could help. – Reto Meier Jan 20 '09 at 9:37
5  
I dont think the second approach works. I tried it; one Activity with a EditText. I wrote some text there, change orientation and the text was gone/reset. – Ted Jan 9 '10 at 3:20
25  
Here's hoping we see an onRotate() method in the future. Having to even worry about things like this is—frankly—frustrating. – Kelly Sutton Jul 28 '10 at 15:12
15  
Note that the Android Dev Guide cautions against using this: Note: Using (android:configChanges) should be avoided and used only as a last-resort. Please read Handling Runtime Changes for more information about how to properly handle a restart due to a configuration change. In lieu, to persist data across rotation events, they seem to prefer using the onSaveInstanceState Bundle; or as @Jon-O mentions, onRetainNonConfigurationInstance. – Jeffro Dec 1 '11 at 19:08
show 10 more comments
feedback

what I did...

in the manifest, to the activity section, added:

android:configChanges="keyboardHidden|orientation"

in the code for the activity, implemented:

//used in onCreate() and onConfigurationChanged() to set up the UI elements
public void InitializeUI()
{
    //get views from ID's
    this.textViewHeaderMainMessage = (TextView) this.findViewById(R.id.TextViewHeaderMainMessage);

    //etc... hook up click listeners, whatever you need from the Views
}

//Called when the activity is first created.
@Override
public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    InitializeUI();
}

//this is called when the screen rotates.
// (onCreate is no longer called when screen rotates due to manifest, see: android:configChanges)
@Override
public void onConfigurationChanged(Configuration newConfig)
{
    super.onConfigurationChanged(newConfig);
    setContentView(R.layout.main);

    InitializeUI();
}
link|improve this answer
2  
to clarify: with my implementation you can now have variable initialization in onCreate() and onConfigurationChanged() will simply be called for the screen rotation. Your variables are now insulated from screen rotations ;-) nice and ez – Someone Somewhere Apr 5 '11 at 22:48
I did everything just as described here, but I get NullPointerException when I try to press a button after orientation change. What could be wrong? – Finnboy11 Apr 21 at 13:47
feedback

What you describe is the default behavior. You have to detect and handle these events yourself by adding:

android:configChanges

to your manifest and then the changes that you want to handle. So for orientation, you would use:

android:configChanges="orientation"

and for the keyboard being opened or closed you would use:

android:configChanges="keyboardHidden"

If you want to handle both you can just separate them with the pipe command like:

android:configChanges="keyboardHidden|orientation"

This will trigger the onConfigurationChanged method in whatever Activity you call. If you override the method you can pass in the new values.

Hope this helps.

link|improve this answer
See my answer below noting that android:configChanges="orientation" only seems to trigger bugs in the emulator, at least for Android 2.1. – Liudvikas Bukys Dec 22 '10 at 21:53
feedback

I just discovered this lore:

For keeping the Activity alive through an orientation change, and handling it through onConfigurationChanged, the documentation and the code sample above suggest this in the Manifest file:

android:configChanges="keyboardHidden|orientation"

which has the extra benefit that it always works.

The bonus lore is that omitting the keyboardHidden may seem logical, but it causes failures in the emulator (for Android 2.1 at least): specifying only orientation will make the emulator call both OnCreate and onConfigurationChanged sometimes, and only OnCreate other times.

I haven't seen the failure on a device, but I have heard about the emulator failing for others. So it's worth documenting.

link|improve this answer
I can confirm that the emulator is completely bugged with just "orientation". I've spent the night tearing my hair out from this and just came across your fix which works. – locka Apr 7 '11 at 21:49
3  
Caution: Beginning with Android 3.2 (API level 13), the "screen size" also changes when the device switches between portrait and landscape orientation. Thus, if you want to prevent runtime restarts due to orientation change when developing for API level 13 or higher: android:configChanges="orientation|keyboardHidden|screenSize" – Geltrude Feb 12 at 10:51
@Geltrude - Thanks. – javaMe Mar 16 at 17:29
feedback

Just noticed the android-developers blog post "Avoiding memory leaks" where they talk about a kind of memory leak commonly occuring when trying to keep data across context destruct/construct sequences (of which Activity is a sub-set).

Take care so you don't end up with such a leak (although the solution in the accepted answer seems to avoid this).

link|improve this answer
1  
Thank you - I have fixed a few problems. – Isaac Waller Feb 15 '09 at 22:33
feedback

You might also consider using the Android platform's way of persisting data across orientation changes: onRetainNonConfigurationInstance() and getLastNonConfigurationInstance().

This allows you to persist data across configuration changes, such as information you may have gotten from a server fetch or something else that's been computed in onCreate or since, while also allowing Android to re-layout your Activity using the xml file for the orientation now in use.

See here or here.

link|improve this answer
feedback

Update for Android 3.2 and higher:

Caution: Beginning with Android 3.2 (API level 13), the "screen size" also changes when the device switches between portrait and landscape orientation. Thus, if you want to prevent runtime restarts due to orientation change when developing for API level 13 or higher (as declared by the minSdkVersion and targetSdkVersion attributes), you must include the "screenSize" value in addition to the "orientation" value. That is, you must declare android:configChanges="orientation|screenSize". However, if your application targets API level 12 or lower, then your activity always handles this configuration change itself (this configuration change does not restart your activity, even when running on an Android 3.2 or higher device).

link|improve this answer
Thanks for that clarification, since a comment above on this almost sent me off to look into it. I'm presently targeting API 8 and my code does not have screenSize on configChanges and can confirm that it works fine (without re-orienting) on the device I have that is running ICS. – Carl Mar 12 at 9:58
feedback

The onCreate Method is still called even when you change the orientation of Android. So moving all the heavy functionality to this method is not going to help you

link|improve this answer
feedback
// onConfigurationChanged is called when the screen rotates. 
// (onCreate is no longer called when screen rotates due to manifest, see:  
// android:configChanges)

What part of the manifest tells it "don't call onCreate()"?

Also, Google's docs say to avoid using android:configChanges (except as a last resort).... but then the alternate methods they suggest all DO use android:configChanges.

It has been my experience that the emulator ALWAYS calls onCreate() upon rotation. But the 1-2 devices that I run the same code on... do not. (Not sure why there would be any difference.)

link|improve this answer
The emulator is so slow and flaky and lacking in realism that I very quickly decided to buy a selection of devices (so far three phones and two tablets - very cheap used on a site like swappa or ebay) with various screen sizes, with keyboard and without, running different (mostly rooted) OS versions, etc.). This works really well and is well worth the investment. – Carl Mar 12 at 10:03
feedback

Changes to be made in the Android manifest are:

 android:configChanges="keyboardHidden|orientation" 

Additions to be made inside activity are:

         public void onConfigurationChanged(Configuration newConfig) {
            super.onConfigurationChanged(newConfig);

         // Checks the orientation of the screen
    if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
        Toast.makeText(this, "landscape", Toast.LENGTH_SHORT).show();
    } else if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT) {
        Toast.makeText(this, "portrait", Toast.LENGTH_SHORT).show();
    }
}
link|improve this answer
feedback

Even though it is not "the Android way," I have gotten very good results by handling orientation changes myself and simply repositioning the widgets within a view to take the altered orientation into account. This is faster than any other approach, because your views do not have to be saved and restored. It also provides a more seamless experience to the user, because the respositioned widgets are exactly the same widgets, just moved and/or resized. Not only model state, but also view state, can be preserved in this manner.

RelativeLayout can sometimes be a good choice for a view that has to reorient itself from time to time. You just provide a set of portrait layout params and a set of landscaped layout params, with different relative positioning rules on each, for each child widget. Then, in your onConfigurationChanged() method, you pass the appropriate one to a setLayoutParams() call on each child. If any child control itself needs to be internally reoriented, you just call a method on that child to perform the reorientation. That child similarly calls methods on any of *its" child controls that need internal reorientation, and so on.

link|improve this answer
feedback

protected by Jeff Atwood Jun 8 '10 at 9:48

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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