[android-beginners] Re: Follow up on my Acitivty Lifecycle Question

2009-08-03 Thread Evan Ruff
So I think I have a related question about the Lifecycle, but this is more having to do with the application itself. While I think I understand how the whole Tasks/Stack paradigm is supposed to work, I'm not really seeing that sort of behavior with my application when someone exits then comes

[android-beginners] Re: Follow up on my Acitivty Lifecycle Question

2009-08-01 Thread Mark Murphy
Evan Ruff wrote: Basically, I have two related activities: a view with a number in the middle, and another activity with a grid of numbers that fill the screen. Basically, when you press the number on view1, it switches to view2 (startActivityForResult) and then when the user clicks one of

[android-beginners] Re: Follow up on my Acitivty Lifecycle Question

2009-08-01 Thread Evan Ruff
Thanks Mark, I was looking at the Task thing, but I wasn't sure I was really going to be able to get it to work as I would expect. I'll look into the Managed Dialog thing. Thanks! E On Aug 1, 4:22 pm, Mark Murphy mmur...@commonsware.com wrote: Evan Ruff wrote: Basically, I have two

[android-beginners] Re: Follow up on my Acitivty Lifecycle Question

2009-08-01 Thread Evan Ruff
Mark, I've converted everything over to extend the Dialog class. A couple things I've noticed is that if you use the actual Dialog theme the thing performs like a dog, regardless if you used a managed dialog. I switched to translucent and it's almost instantanious! Thanks again for your help,