Is there a way how to pass list of lists with my parcelable objects?
public void listDataSms(ArrayList<MySmsLog> stringList) {
Bundle bundle = new Bundle();
bundle.putParcelableArrayList(NUMBER_LIST, stringList);
Intent i = new Intent(this, MyCommonListActivity.class);
i.putExtra(WHO_INT, SMS_LOG);
i.putExtras(bundle);
startActivityForResult(i, SMS_LOG);
i have this working but now i need to pass this somehow
public void listDataSmsAll(ArrayList<ArrayList<MySmsLog>> stringList)