Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

please tell me what is the right way for maintaining the application state/data.

i have an alarm activity that perform alarm tasks. it takes user preferences and save them in global variables and start working in background.

when alarm invoked i called this activity again but when it start, it re-initialized all user preferences to their initial values.

how to maintain these values so when application comes to foreground it maintain its all values as it is?

share|improve this question
1  
You need to post your code and explain more about what you are trying to achieve. Also, please do not use quote formatting on your entire question. – Polynomial Dec 27 '11 at 12:02

closed as not a real question by Mitch Wheat, Polynomial, Bill the Lizard Feb 12 at 13:33

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 0 down vote accepted

If you have not soo much preferences, they could be maintained in shared prefrerences. I developed small library, which easies use of them. See example (in constructor):

https://github.com/ko5tik/camerawatch/blob/master/src/de/pribluda/android/camerawatch/Configuration.java

Rule of Thumb: load in onCreate() and save in onPause()

And library is here:

https://github.com/ko5tik/andject

share|improve this answer

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