Why is that the object has to be serialized or be Parcelable in order to be passed to an Intent ?
views:
68answers:
1
+3
A:
Intents can be sent between processes, so cannot contain Object:s limited to the current JVM.
fornwall
2010-10-29 12:04:28
Makes absolute sense, but is there a better way to pass objects to an activity when they are in the same VM ?
Ramp
2010-10-29 12:53:20
There are alternatives which may be better - see "How do I pass data between Activities/Services within a single application?" at http://developer.android.com/guide/appendix/faq/framework.html#3
fornwall
2010-10-29 12:57:27