Tagged Questions
2
votes
1answer
288 views
How to read/write a List<Date> to a Parcel?
I have a class that implements Parcelable. What's the best way to read/write a List of Date objects to a Parcel?
This is how you can do it for a single Date object:
date = new ...
0
votes
2answers
417 views
Writing Objects members to Parcels
So far I've been chugging along with Parcelable objects without issue, mainly because all of their members have been types that have writeX() methods associated with them. For example, I do:
public ...
0
votes
1answer
600 views
Android Parcelable Parcel HashMap
I want to use Parcelable instead of Serializable in android, because it is faster and recommended.
My question is, it seems i cannot parcel a LinkedHashMap, a class provided by Java, right?
So for ...
6
votes
3answers
8k views
Android Parcelable and Serializable
So i know it is recommended to use Parcelable instead of Serializable in android, because it is faster.
My question is, it is impossible to avoid using Serializable right?
If i have a custom object i ...
