Hi everyone!
How can I pass a Object: ArrayList from one Activity to another?
Seems that intent cannot hold custom ones except ArrayList.
As a kind of hack, I use a static member:
staticResultList = new ArrayList<SingleExamResult>(m_examResults);
and Get it in the following Activity by:
m_examResults = DoExam.staticResultList;
It's not the correct way obviously, any 'common' approaches? Thanks a lot!