Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am launching an app when clicked on a url. I have a separate Launcher activity. This activity checks the state of the application and launches it using the Intent flags FLAG_ACTIVITY_NEW_TASK.

Flow of app while join via url:

Launcher(FLAG_ACTIVITY_NEW_TASK) -> A -> B

The launcher get destroyed once it launches the app.

If I press Home and put the app to background, then the A and B activity Stop() is called. When I press long home and return to the app then activity A and get B is destroyed and get created again.

I dont want the activity to get destroyed when I click on long home. I want its onResume to be called and not get destroyed and get created.

Thanks

share|improve this question
Any specific reason you are using "FLAG_ACTIVITY_NEW_TASK". I think "FLAG_ACTIVITY_NEW_TASK" is main culprit for the behaviour. Any specific reason or specific functionality you are using this flag. – Roll no1 Dec 26 '11 at 9:47
yes I am doin launch via url for which i need this flag. Also if the app is already launched and if user clicks url again then I need to show him the current active screen which i do with this flag. – Nibs Dec 27 '11 at 5:59
FLAG_ACTIVITY_BROUGHT_TO_FRONT should work for the functionality that you want to implement – Roll no1 Dec 27 '11 at 7:52

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.