How to pass the ArrayList
of ArrayList
, for example I have created one object.
For example,
I have a class OperationInfo
and I need to pass ArrayList<ArrayList<OperationInfo>>
to other class. my OperationInfo
class is parcelable.
but it seems intent
does not allow us to pass the list of a list using putParcelableArrayListExtra
is there a way to pass list of list to another class ?