InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between Serializable and Parcelable? Which is the best approach in Android? |
|
Answer» While developing applications usually it needs to transfer data from one ACTIVITY to another. This data needs to be added into a CORRESPONDING INTENT object. Some additional actions are required to make the data suitable for transfer. For doing that the object should be either serializable or parcelable. Serializable:
Parcelable:
|
|