I'm working on a fairly complex Android application that requires a somewhat large amount of data about the application (I'd say a total of about 500KB -- is this large for a mobile device?). From what I can tell, any orientation change in the application (in the activity, to be more precise) causes a complete destruction and recreation of the activity. Based on my findings, the Application class does not have the same life-cycle (i.e. it is, for all intents and purposes, always instantiated). Does it make sense to store the state information inside of the application class and then reference it from the Activity, or is that generally not the "acceptable" method due to memory constraints on mobile devices? I really appreciate any advice on this topic. Thanks!

link|improve this question

53% accept rate
3  
Just keep in mind that data in your Application can still be deleted if your app goes into the background, so this is not a solution to persisting data you always want to be able to get back. It just serves as a method of not having to recreate expensive objects as often. – Mayra Nov 17 '10 at 20:57
1  
Mayra; I don't think the app is "usually" deleted (though, as someone points out later in this thread, it "can" be). I'm probably going to go with some type of a "hybrid" approach of using the application to store and load the data, but then use the "android:orientation" attribute on the activity in the manifest file to override the normal behavior of tearing down and rebuilding the activity. All this, of course, assumes that the application can determine "when" it's being destroyed so that the data can be persisted. – Dave Nov 18 '10 at 12:30
feedback

5 Answers

up vote 24 down vote accepted

I don't think 500kb will be that big of a deal.

What you described is exactly how I tackled my problem of losing data in an activity. I created a global singleton in the Application class and was able to access it from the activities I used.

You can pass data around in a Global Singleton if it is going to be used a lot.

public class YourApplication extends Application 
{     
     public SomeDataClass data = new SomeDataClass();
}

Then call it in any activity by:

YourApplication appState = ((YourApplication)this.getApplication());
appState.data.UseAGetterOrSetterHere(); // Do whatever you need to with the data here.

I discuss it here in my blog post, under the section "Global Singleton."

link|improve this answer
3  
Exactly what I would have answered. Upticked. – blindstuff Nov 17 '10 at 20:42
feedback

If you want to access the "Global Singleton" outside of an activity and you don't want to pass the Context through all the involved objects to obtain the singleton, you can just define a static attribute in your application class, which holds the reference to itself. Just initialize the attribute in the onCreate() method.

For example:

public class ApplicationController extends Application {
    private static ApplicationController _appCtrl;

    public static ApplicationController getAppCtrl()
    {
         return _appCtrl;
    }
}

Because subclasses of Application also can obtain the Resources, you could access them simply when you define a static method, which returns them, like:

public static Resources getAppResources()
{
    return _appCtrl.getResources();
}

But be very careful when passing around Context references to avoid memory leaks.

link|improve this answer
feedback

You can actually override the orientation functionality to make sure that your activity isn't destroyed and recreated. Look here.

link|improve this answer
4  
You can do a lot of things. It doesn't mean they're good ideas. This is not a good idea. – Andrew Nov 17 '10 at 22:07
feedback

Those who count on Application instance are wrong. At first it may look as if the Application exists while the whole app process exists. However this is an incorrect assumption. Processes in Android are also may be killed when OS decides it is time to. Android OS have its own considerations about what it can kill and in what order. All processes are devided to 5 levels of "killability". Here is the doc where those levels are specified. So, for instance, if your app went in the background due to user answering to an incoming call, then depending on a RAM state the OS may (or may not) kill your process (with the Application instance, of course).

I think a better approach would be to persist your data to internal storage file and then read it when your activity is resuming.

link|improve this answer
1  
If the Application is killed, then who cares, right? The application is gone. As I understand it, Android will reclaim processes which contain memory like Activities. If the process containing the Application is killed (if Android will even do that?), that is essentially like killing the app. The user will need to launch the app again and, at that point, who cares? It's a new instance of the application. – Andrew Nov 17 '10 at 22:06
4  
This was an unplesant surprise for us in production. Believe me Android kills processes, it just depends on RAM state and other factors described in the documentation. It was a nightmare for us so I just share my real experience. Well we did not have this on emulators, but in real world some devices are 'overloaded' with apps, so killing a background process is a normal situation. Yes, if user then decides to get the app up into foreground - the OS restores its stack including the Application instance, however there will not be your static data you count on unless you persisted it. – Arhimed Nov 17 '10 at 22:24
1  
I think I'm going to probably use a hybrid approach. I already knew about the manifest trick to override the orientation change (which has other benefits). Since the application is a game, I'm not sure persisting the data between launches is "important" enough; though it probably wouldn't be terribly hard as most of the data can be serialized (though I wouldn't want to serialize and unserialize between every orientation change). I definitely appreciate the input. I wouldn't say those that depend on the App instance are "wrong." A lot depends on the app :). – Dave Nov 18 '10 at 12:28
@Arhimed you are generalizing your answer too much. And suggesting a narrow approach based on your assumption. False Assumption: The data held in the static variables needs to be persisted across sessions of the app. There may be numerous use cases where the data is trivial and need not be persisted immediately. – Mubix Jan 5 at 16:19
feedback

Dave, what kind of data is it? If it's general data that pertains to the application as a whole (example: user data), then extend the Application class and store it there. If the data pertains to the Activity, you should use the onSaveInstanceState and onRestoreInstanceState handlers to persist the data on screen rotation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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