Lets say that you have two classes ObjA and ObjB. ObjB is derived from ObjA.

If your implementing parcelable in ObjB, do you also need to parcel ObjA also??

I have a project that when I tried the above it would not work but once I combined ObjA and ObjB together the application worked.

I saw a question which linked to this site but the derived class had ObjA inside ObjB. I am simply extending ObjA so do I still need to parcelable both classes???

link|improve this question
Have you read through this question? – Marvin Pinto Jan 21 at 5:40
Thanks..I just did. I might change it back to see if this will work. – barakisbrown Jan 21 at 6:47
feedback

1 Answer

According to my understanding,

If ObjB is a ObjA - No need for implementing parcelable in ObjA if this is done in ObjB.

But,

If ObjB has a ObjA - You need to implement parcelable in ObjA only if you send it's state via the parcel.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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