문제

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