I am passing ArrayList myList to an Intent. Both of the following ways seem to work fine with putting the ArrayList into the new
ArrayList myList
try this my friend:
intent.putParcelableArrayListExtra("tag",yourObjectImplementsParceable); xxx = (ArrayList) intent.getParcelableArrayListExtra("tag");
hope this helps