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.
|
|
|||||
|
|
Using the Application Class Depending on what you're doing in your initialization you could consider creating a new class that extends
The 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
or for Android 3.2 (API level 13) and newer:
Then within the Activity override the
|
|||||||||||||||||||||
|
|
Update for Android 3.2 and higher:
|
|||||||||
|
|
what I did... in the manifest, to the activity section, added:
in the code for the activity, implemented:
|
|||||||||
|
|
What you describe is the default behavior. You have to detect and handle these events yourself by adding:
to your manifest and then the changes that you want to handle. So for orientation, you would use:
and for the keyboard being opened or closed you would use:
If you want to handle both you can just separate them with the pipe command like:
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. |
|||
|
|
I just discovered this lore: For keeping the Activity alive through an orientation change, and handling it through
which has the extra benefit that it always works. The bonus lore is that omitting the I haven't seen the failure on a device, but I have heard about the emulator failing for others. So it's worth documenting. |
|||||||||||||
|
|
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). |
|||||
|
|
You might also consider using the Android platform's way of persisting data across orientation changes: 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 It should be noted that these methods are now deprecated (although still more flexible than handling orientation change yourself as most of the above solutions suggest) with the recommendation that everyone switch to |
||||
|
|
|
Instead of trying to stop the onCreate() from being fired altogether, maybe try checking the Bundle savedInstanceState being passed into the event to see if it is null or not. For instance, if I have some logic that should be run when the activity is truly created, not on every orientation change, I only run that logic in the onCreate() only if the savedInstanceState is null. Otherwise, I still want the layout to redraw properly for the orientation.
not sure if this is the ultimate answer, but it works for me. |
|||||||||||
|
|
The approach is useful but is incomplete when using Fragments. Fragments usually get recreated on configuration change. If you don't wish this to happen, use
This will cause fragments to be retained during configuration change. http://developer.android.com/reference/android/app/Fragment.html#setRetainInstance(boolean) |
|||||
|
|
I just simply added
in the manifest file and did not add any So every time the keyboard slides out or in nothing happens. |
||||
|
|
|
Changes to be made in the Android manifest are:
Additions to be made inside activity are:
|
|||
|
|
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.) |
|||||
|
|
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 |
|||
|
|
|
fix the screen orientation (landscape or portrait) in AndroidManifest.xml android:screenOrientation="portrait" or android:screenOrientation="landscape" for this your onResume() method is not called. |
|||
|
|
|
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. |
|||
|
|
|
The way I have found to do this is use the onRestoreInstanceState and the onSaveInstanceState events to save something in the bundle (even if you dont need any variables saved, just put something in there so the bundle isnt emptpy). Then, on the onCreate method, check to see if the bundle is empty, and if it is, then do the initialization, if not, then do it. |
|||
|
|
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.
