I have an Activity
with launchmode = "singleInstance"
and it is the launcher Activity
of the app. Now I am trying to detect which Flag
my Activity
was/will be launched with, but I can not find the flag id with the Intent
Flag
s on the documented page; this is the flag
String version of the Flag id is 270532608
and String version of the Intent is
04-25 20:18:57.061: V/logtag(1665): Intent { act=android.intent.action.MAIN
cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=<filtered> }
when the application first starts, the system calls my Activity
with this Flag
= Intent.FLAG_ACTIVITY_NEW_TASK
or string version = 268435456
(which it should) but when I quit the app, and start it once more from the launcher I get this flag 0x10200000
instead of the previous flag
so my question is can anyone tell me what Flag this is?
and why my activity is being called with it?
and are there any other instances from the launcher that my activity might be triggered with a different flag aside from the unknown one & 0x10200000?