Re: [android-developers] Passing object via intent

2010-11-25 Thread TreKing
On Thu, Nov 25, 2010 at 9:55 AM, pedr0 wrote: > I read some tutorial about the object of this topic (Passing object via > intent) there tutorial said that there are two way: > > 1) My object must implement Parcelable Interface > > 2) I have to move my object static, for share data between activi

Re: [android-developers] Passing object via intent

2010-11-25 Thread Kostya Vasilyev
If the process is killed, then everything is gone, including your static object. You can put a list of parcelables into an intent extra: http://developer.android.com/reference/android/content/Intent.html#putParcelableArrayListExtra(java.lang.String, java.util.ArrayList) -- Kostya 25.11.2010

[android-developers] Passing object via intent

2010-11-25 Thread pedr0
Hi at all, I read some tutorial about the object of this topic (Passing object via intent) there tutorial said that there are two way: 1) My object must implement Parcelable Interface 2) I have to move my object static, for share data between activities. I have to share an ArrayList and I am a