How to write and read ArrayList<String> to parcel in android

android

Solution

By @JeremyRoman: `writeStringList`, `readStringList` and `createStringArrayList` all exist on `Parcel` since API 1.

Problem

In my project, I have to write and read `ArrayList<String>` to parcel, I tried with writeList and writeStringList but no use, I am getting exceptions while reading the lists. Could any one help me in this? Thanks In advance.

Original source

Related problems