[android-beginners] Re: Android Best Practices

2009-12-13 Thread Marc
Here is my take on it: An activity is a self contained thing, like a mini program. You don't pass complex data structures between activities. All the data that goes to/from an Activity gets passes through an intent. An activity can be called from another program through an intent. So an activity is

Re: [android-beginners] Re: Android Best Practices

2009-12-11 Thread Justin Anderson
That would be totally up to you and depends on what you are wanting to accomplish. Both options have their advantages/disadvantages. For example, if you are doing something like a setup wizard for your app, then a ViewFlipper might be appropriate. But if you want to be able to access specific par

[android-beginners] Re: Android Best Practices

2009-12-10 Thread Kanizares
Yes, same question from me. I currently am building an app that has certain repetitive screens (e.g. drill-down through lists of items). Is a ViewFlipper or multiple Activities the better way to go? cheers Kanizares On Nov 10, 4:26 pm, "jphani...@gmail.com" wrote: > I have a question with respec