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!
|
|
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.
Then call it in any activity by:
I discuss it here in my blog post, under the section "Global Singleton." |
|||||
|
|
Those who count on I think a better approach would be to persist your data to internal storage file and then read it when your activity is resuming. UPDATE: I got many negative feedbacks, so it is time to add a clarification. :) Well, initially I realy used a wrong assumption that the state is really important for the app. However if your app is OK that sometimes the state is lost (it could be some images that will be just reread/redownloaded), then it is fully OK to keep it as a member of |
|||||||||||||||||||
|
|
If you want to access the "Global Singleton" outside of an activity and you don't want to pass the For example:
Because subclasses of
But be very careful when passing around Context references to avoid memory leaks. |
|||||
|
|
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. |
|||
|
|
|
You can actually override the orientation functionality to make sure that your activity isn't destroyed and recreated. Look here. |
|||||||
|