Question

In my app, my own Application class saved some static variables, after clicked home button in my application, the screen go back to home. now i want to resume my application, when i click my app icon in launcher, the variables of the variables before are null, but onlongclick home button and choose my application, the variables is normal~

Was it helpful?

Solution

When you click app icon from the launcher at that time second instance generated for your app.To solve this issue you have to manage with single instance. For that you can use

android:launchMode="singleTask" or

android:launchMode="singleInstance"

` in your manifest for activity

Refer this question too

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top