So i know it is recommended to use Parcelable instead of Serializable in android, because it is faster. My question is, it is impossible to avoid using Serializable right?

If i have a custom object i want to serialize, let's say i have the following class definition

public class Person {
   String name;
   int Age;
   ...
   ....
}

Making this parcalble is easy, because the Person class contains the types parcel.write*() supports, i.e. there is parcel.writeString and parcel.writeInt

Now, what if the Person class is the following:

public class PersonTwo {
   MyCustomObj customObj;
   String name;
   int Age;
   ...
   ....
}

how am i suppose to parcel the MyCustomObj object?? It seems I need to use serializble again? but again, I thought it is SLOW to use serializble, and seems we have no choice but to use it in this case.

I don't understand

can someone tell me how I would parcel PersonTwo in this case?

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

Check the Blog HERE

it may helps you

link|improve this answer
When you say that Serialization has a huge performance impact, can you quantify it ? – Siddharth Feb 17 at 5:20
i don't know how. it's just that every info i find is saying DON"T USE IT!! – user1118019 Feb 17 at 5:48
feedback

The short answer is that you cannot Parcel non-primitive objects. You're going to have to put your object somewhere and then somehow pass a reference so you can retrieve it on the oher side. Myabe put it in a ContentProvider or a SQLite database or put it into your Application object. There are a handful of choices depending on your situation.

link|improve this answer
feedback

You need to make MyCustomObj parcelable.

link|improve this answer
feedback

The link given by Ajay is the exact what you are looking for, how you can do it. Well, what you can do is implement Parcelable to your CustomObject1 and create a Parcelable class for it and then you can use that Parcelable class to Parcel it inside another Parcelable class that will Parcel both the CustomObjects.

public class CustomObject1 implements Parcelable {

   // parcelable code CustomObject1
}

public class CustomObject2 implements Parcelable {

    private CustomObject1 obj1;

   // add  CustomObject1 here with getter setter
   // parcelable code for CustomObject2 

    @Override
    public void writeToParcel(Parcel dest, int flags) {
        dest.writeParcelable(obj1, flags);
    }  
    private void readFromParcel(Parcel in) {
        obj1 = in.readParcelable(CustomObject1.class.getClassLoader());
    }
  ............
}
link|improve this answer
Thanks dude, i would have accepted both you and ajay as answer, but seems i can only pick one. anyway thank you!! – user1118019 Feb 17 at 5:47
No, problem I just want to give a brief that how I should work. – Lalit Poptani Feb 17 at 5:52
feedback

Your Answer

 
or
required, but never shown

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