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~

有帮助吗?

解决方案

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top