What is the difference between parcelable and serializable()
What is the difference between parcelable and serializable()
Parcels are light weght serialzable .It is perfred to use parcels for marsshaling objects into byte streams
Sreializable objects are faster to transfer when compared to parcelable
Android app heavliy depends on Serialization concept tomarshal objects
Android uses Linux IPC driver to transfer data between two processes.