user2017280
user2017280

Reputation: 11

My android Application instance(Application class) is destroyed after I stay my application in background after 2-3 minutes

I use Application class to store my android application global parameters.But when I go to other app and stay my app to background for about several minutes, my app can not run again. Because I get parameters from the Application class but now it becomes empty.

My question is why it like that and how to solve this problem? And I also saw a thread follows:

Returning after a period of inactivity in my Android Application causes destroy set Values

The answer is using onSaveInstanceState(). But how can I save all my application parameters in it? Thank you

.

Upvotes: 1

Views: 457

Answers (1)

Buda Gavril
Buda Gavril

Reputation: 21657

why don't you use shared preferences to save your data? OS kills your application if it is on background and it needs resources...

Upvotes: 2

Related Questions