Search code examples
androidparcelableserializable

Difference between Serializable, Parcelable in Android


1].What is the difference between Serializable, Parcelable?

2].Can I implement Both Interfaces in Pojo Class?,If answer is No,what is the reason for that?


Solution

  • Parcelable and Serialization are used for marshaling and unmarshaling Java objects.

    More details : http://www.developerphil.com/parcelable-vs-serializable/