OK. I found it faster than I thought or I would have waited to make that last reply.
You have two options: 1.) put the parcelable in an intent, then get it back out. -- this would be instead of calling the Creator yourself. This is actually where I saw the call to setDataPosition(0), in the android.os.Bundle source. 2.) call parcel.setDataPosition(0); -- call right before your creator call. This is the "flip" of Parcel. It makes sense that you have to set the position back to the beginning to start reading. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

