UPDATE:

IParcelable apparently cannot currently be implemented in Mono for Android. In the end I used the .NET serialization in the class, and then parceled/bundled the serialized data in the Android-specific code, which works just fine. It also keeps the class cross-platform compatible, which is desirable.

ORIGINAL QUESTION:

I'm trying to implement Parcelable as part of a class in a Mono for Android app, but Xamarin's documentation for Parcelable is copy-pasted from the Android documentation:

http://androidapi.xamarin.com/?link=T%3aAndroid.OS.IParcelable

public class MyParcelable implements Parcelable {
 private int mData;

 public int describeContents() {
     return 0;
 }

 public void writeToParcel(Parcel out, int flags) {
     out.writeInt(mData);
 }

 public static final Parcelable.Creator<MyParcelable> CREATOR
         = new Parcelable.Creator<MyParcelable>() {
     public MyParcelable createFromParcel(Parcel in) {
         return new MyParcelable(in);
     }

     public MyParcelable[] newArray(int size) {
         return new MyParcelable[size];
     }
 };

 private MyParcelable(Parcel in) {
     mData = in.readInt();
 }
}

Since that documentation is written for Java, it's basically wrong for C#. I'm just wondering if anyone knows how to convert this code into C#. I'm particularly having trouble with the CREATOR field.

Also, since I'm trying to write code that I can port to other platforms later, what's the best way to implement Parcelable? Should I make it part of the class using partial classes?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

One thing I often forget with Anonymous Inner Classes (AIC for me) is that the 'types' in the AIC are not translated Directly into C# - they are interfaces, meaning the standard for C# is to start with an 'I.' Also each AIC must be implemented explicitly in c#.

Does the following help?

public class Creator : IParcelableCreator
{


    public Java.Lang.Object CreateFromParcel(Parcel source)
    {
        throw new NotImplementedException();
    }

    public Java.Lang.Object[] NewArray(int size)
    {
        throw new NotImplementedException();
    }

    public IntPtr Handle
    {
        get { throw new NotImplementedException(); }
    }
}

and then:

public class MyParcelable : IParcelable
{


    public int DescribeContents()
    {
        throw new NotImplementedException();
    }

    public void WriteToParcel(Parcel dest, int flags)
    {
        throw new NotImplementedException();
    }

    public IntPtr Handle
    {
        get { throw new NotImplementedException(); }
    }
}
link|improve this answer
Although I have to admit looking at it again - I absolutely HATE it when a class makes me implement 'IntPtr Handle' - I believe this is a flaw with mono for Android. Typically I try to avoid this kind of thing at all costs. I would rather recreate objects on the other side of an Activity / Intent than pass objects between them. – Quintin Balsdon Jan 31 at 6:22
Thanks! Is all that code there equivalent to the Java code from the documentation? I can't see where the Creator class is used in the MyParcelable class. Since I don't know much about Java, I don't know what "public static final Parcelable.Creator<MyParcelable> CREATOR" represents, or where it is reflected in the code you've posted. – Excrubulent Jan 31 at 13:11
1  
The Creator class (my code) returns Java.Lang.Objects. Unfortunately my dev machine died today so I can't test, but you must either: 1. Convert the instance to a Java.Lang.Object - I don't know the specifics of this. 2. Just see if you can change the type (Java.Lang.Object to your specific type) without affecting anything. Once you have sorted out the type issue with the Creator class - I don't think it will be hectic - then make a public static instance of Creator inside MyPacelable. The rest of the code should be translation. I am sorry I am not much help :( – Quintin Balsdon Jan 31 at 18:38
2  
Are you sure about this? On the Mono For Android limitations page it explicitly states that IParcelable cannot be implemented. – Travis Feb 3 at 14:54
1  
Well, in the end I just used the .NET serialization to XML, then parceled the result in Android. I'd read that the standard Android serialization wasn't usable, but then I realized that was referring to Java, while .NET works fine. Also, using the .NET serialization keeps this class cross-platform compatible, so in the end it's a moot point whether I can implement IParcelable. Anyway, the question asked was "can someone translate the code to Java", which was answered. It would be nice if that limitation was mentioned in the documentation for IParcelable. – Excrubulent Feb 7 at 23:49
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.