[android-developers] Re: Starting an activity with FLAG_ACTIVITY_MULTIPLE_TASK to see multiple instances

2009-02-02 Thread Dan Raaka
Here is an use case we are trying .. Apk .. MyEmail main -> Inbox view -> composer view -> msgview If the above apk contains 3 activities .. User launches the "MyEmail: and sees the Inbox .. User selects one of the messages .. thus launching the "msgview" activity .. User goes back to

[android-developers] Re: Starting an activity with FLAG_ACTIVITY_MULTIPLE_TASK to see multiple instances

2009-02-02 Thread Dianne Hackborn
Please please please don't use FLAG_ACTIVITY_MULTIPLE_TASK unless you really know what you are doing. At the very least, you need to read and fully understand the material here: http://code.google.com/android/intro/appmodel.html On Mon, Feb 2, 2009 at 12:11 PM, Dan Raaka wrote: > > I am trying