Parcelable vs Serializable
출처: http://www.developerphil.com/parcelable-vs-serializable/ http://aroundck.tistory.com/2477 When starting on Android, we all learn that we cannot just pass object references to activities and fragments , we have to put those in an Intent / Bundle. Looking at the api, we realize that we have two options, we can either make our objects Parcelable orSerializable. As Java de..