Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My application has two activities A and B. A is the root activity and set with singleTop launchMode. B is started from A, i.e. the task stack is (A->B) I add a status notification to launch the application as long press Home button. The notification intent point to activity A.

When the task stack is (A) only, the intent invokes onNewIntent() from existing A, as expected. When the task stack is (A->B), the intent create new activity A. But what I wants is resume task (A->B) as switch recent apps by long press Home button.

Is the problem caused by incorrect launch mode used? or any flags need to be added to the notification intent?

Thanks.

share|improve this question
Read this post on how to handle launching activities from a notification: developer.android.com/guide/topics/ui/notifiers/… – bkurzius Jan 29 at 19:28

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.