Parceler supports LinkedHashMap along with many other standard Java collections. To use Parceler, you just need to annotate your Person
class and wrap / expand it in and out of the generated Parcelable
:
Person person = new Person(); Parcels.wrap(person); ... Parcels.unwrap(parcelable);
source share