Why is onNewIntent() not used together with singleInstance launchmode? I mean if I re-launch my singleInstance Activity I might still want to get that new Intent, right?
Asked
Active
Viewed 1,010 times
1 Answers
1
It does get called.
If you launch an Activity
which has launchMode="singleInstance"
and that Activity
is already running in a task, the task will be brought to the foreground and onNewIntent()
will be called.

David Wasser
- 93,459
- 16
- 209
- 274