[android-beginners] Re: Design question: Activity per screen or not

2010-02-03 Thread Smelly Eddie
David - a few thoughts. Each screen should be a new activity. The cost of creating a new class is about 2 minutes and 4kb. The benefits are numerous. 1) Rely on xml layouts without custom if this screen than that or if that screen then this 2) Avoid complex logic and bloated classes. In program

Re: [android-beginners] Re: Design question: Activity per screen or not

2010-02-03 Thread Android Development
Well said. I also follow the same philosophy. 2010/2/3 Smelly Eddie > David - a few thoughts. > > Each screen should be a new activity. The cost of creating a new > class is about 2 minutes and 4kb. The benefits are numerous. > 1) Rely on xml layouts without custom if this screen than that or