[android-developers] Re: my custom Parcelable jams on cross-process read

2008-12-09 Thread DulcetTone
Thanks, Dianne. I will continue to poke at this. The CREATOR is simply as shown below. public static final Parcelable.Creator CREATOR = new Parcelable.Creator() { public MyParcelable createFromParcel(Parcel in) { return new MyP

[android-developers] Re: my custom Parcelable jams on cross-process read

2008-12-09 Thread Dianne Hackborn
I don't see a problem off-hand, though you didn't include your CREATOR object. We do this kind of thing extensively in the system. On Tue, Dec 9, 2008 at 9:42 AM, DulcetTone <[EMAIL PROTECTED]> wrote: > > using SDK r1 > > I have a Parcelable I am passing successfully in an AIDL call from a > Ser

[android-developers] Re: my custom Parcelable jams on cross-process read

2008-12-09 Thread DulcetTone
Further information: I am able to call functions across this same boundary that merely pass a String and cause it to print on the remote side. Still puzzling on it. :/ tone --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goog