[android-developers] Pass ArrayListCustom Type to new activity

2010-03-19 Thread Tommy
Hey, I am trying to figure out the best way to pass an ArrayList Custom Type to a new activity. Can anyone post some framework code for me or a link to a site with a good tutorial? Thank you in advance for your time! -- You received this message because you are subscribed to the

Re: [android-developers] Pass ArrayListCustom Type to new activity

2010-03-19 Thread Mark Murphy
Tommy wrote: I am trying to figure out the best way to pass an ArrayList Custom Type to a new activity. I will argue that complex data models should be in a shared spot (e.g., managed by a local service), referenced by both activities. You waste a bunch of CPU time and memory marshaling and

RE: [android-developers] Pass ArrayListCustom Type to new activity

2010-03-19 Thread Tommy
@googlegroups.com Subject: Re: [android-developers] Pass ArrayListCustom Type to new activity Tommy wrote: I am trying to figure out the best way to pass an ArrayList Custom Type to a new activity. I will argue that complex data models should be in a shared spot (e.g., managed by a local service