InterviewSolution
Saved Bookmarks
| 1. |
In Android application how you will transfer Object like complex POJO code from one Activity to another? Hint: What is the difference between Serializable and Parcelable? |
|
Answer» When you need to send Object from one activity to another activity, we are using TWO techniques: 1. Serialization and 2. Parcelable. In other case passing data from one activity to another activity, we are using Intent. Parcelable is a FASTER approach compared to Serialization because it is using Android SDK. There are some reasons also:
|
|