[android-developers] Re: Request for comment on Activity flow design

2008-06-25 Thread hackbod
Don't use singleTask or singleInstance, because that will cause your overall activity flow to be broken up into separate tasks for each activity where this intermediate goes. There really isn't a way to do exactly what you want. On Jun 24, 1:06 am, Gavin Bong [EMAIL PROTECTED] wrote: I have a

[android-developers] Re: Request for comment on Activity flow design

2008-06-24 Thread Mark Murphy
Any help would be much appreciated. Just because you want multiple disparate views does not mean you need multiple disparate activities. For example, you could use ViewFlipper to hold A, B, C, D, and INTERMEDIATE as views, and flip between them as needed based on your business requirements.