Is using Serializable in Android bad?
问题 I\'ve been reading a lot of posts and articles extolling the speed of Parcelable over Serializable. I\'ve been using both for a while to pass data between Activities through Intents, and have yet to notice any speed difference when switching between the two. The typical amount of data I have to transfer is 5 to 15 nested objects with 2 to 5 fields each. Since I have about 30 classes which must be transferable, implementing Parcelable requires a lot of boilerplate code that adds maintenance