Serialization in Java was far too slow for Android, so they created the Parcelable class that android developers use to serialize data. The Parcelable approach requires that you explicitly serialize the members of your class, but in the end, you get a much faster serialization of your objects. The problem is you have to do this with every class you create. In a large project with many classes with many objects this becomes tedious violating the rules of code reusability. The solution is to create the Global Parcelable class that all other classes can extend.
forked from awadalaa/Android-Global-Parcelable
-
Notifications
You must be signed in to change notification settings - Fork 0
Serialization in Java was far too slow for Android, so they created the Parcelable class that android developers use to serialize data. The Parcelable approach requires that you explicitly serialize the members of your class, but in the end, you get a much faster serialization of your objects. The problem is you have to do this with every class …
900326/Android-Global-Parcelable
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Serialization in Java was far too slow for Android, so they created the Parcelable class that android developers use to serialize data. The Parcelable approach requires that you explicitly serialize the members of your class, but in the end, you get a much faster serialization of your objects. The problem is you have to do this with every class …
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- Java 100.0%