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?