I have an extremely largely sized list and I want to send it through an Intent. I keep getting:
FAILED BINDER TRANSACTION !!! (parcel size = 1959784)
I have 5720 objects in my list, I have done some research online and it says to split the list up into smaller chunks. So, I did this: (got the same error).
intent.putExtra("cards1", list1);
intent.putExtra("cards2", list2);
intent.putExtra("cards3", list3);
intent.putExtra("cards4", list4);
You can also make your data into a singleton, but I have never dealt with singletons so I do not know the proper procedure to do this.
If anyone has insight, on how to pass extremely large data sets through an intent, please let me know!