[android-developers] Re: When do I need a new Activity?

2009-02-26 Thread Mark Murphy
Michal wrote: Hello, this is as beginner as it gets. I'm creating an app that is basically a series of forms that collect info from the user, and then display that info to the user as well as allow them to modify it... very simple, almost no logic. I have been reading about activities,

[android-developers] Re: When do I need a new Activity?

2009-02-26 Thread Michal
Those are just a few of the design criteria that might lead you in the direction of multiple activities. Thanks a ton Mark, this is great feedback. I will continue exploring the single-activity approach until I run into issues. I owe ya! Michal

[android-developers] Re: When do I need a new Activity?

2009-02-26 Thread madcoder
I didn't like the 'activity' concept when I first started using Android. However, it's grown on me well.Activities themselves are their own encapsulated parts of the application and makes debugging much easier. It is a pain at first to figure out how to destroy/ recreate activities, but

[android-developers] Re: When do I need a new Activity?

2009-02-25 Thread gymshoe
Good question! Can anybody with experience help?? thanks, JIm On Feb 25, 3:15 pm, Michal mic...@gmail.com wrote: Hello, this is as beginner as it gets. I'm creating an app that is basically a series of forms that collect info from the user, and then display that info to the user as well