I am passing custom ArrayList in putParcelableArrayListExtra, but when I receive it within onCreate method of other class, then some values of array are null
put...   get...
[a]  ->  [a]
[b]  ->  null
[c]  ->  [b]
[d]  ->  null
[e]  ->  [c]
I am sending data in  intent.putParcelableArrayListExtra(key, value); and getting it as arrayList = getIntent().getParcelableArrayListExtra(key));
Kindly suggest how to solve this issue.