Re: [android-developers] Best practice to pass persistent objects from an activity to another activity

2010-07-27 Thread Agus
The best way is to use Parcelable. If you have one or two variables to pass around you can use XTRAS mechanism. But if you have an object with 5-10 member fields, using Parcelable makes it elegant and clean. Yes you can use static member to pass data around but this will most often cause memory

Re: [android-developers] Best practice to pass persistent objects from an activity to another activity

2010-07-05 Thread Tom Gibara
It depends very much on the object you want to pass and how its going to be used. I've used a number of different techniques in my applications, and each one is best suited to different situations. -- Tom Gibara email: m...@tomgibara.com web: http://www.tomgibara.com blog:

[android-developers] Best practice to pass persistent objects from an activity to another activity

2010-07-04 Thread Thomas Frick
Dear All, I have two activities. Activity A creates an object and stores some data in this object. After that, activity B ist started. In activity B I have to use the object created in activity A. What is the best way to pass the object from activity A to B? I think it is not possible to store