質問

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