Possible Duplicate:
how to get two dimensional string Array from one Activity to other
I have a 2d String array something like this
String[][] ContactList = new String[][]
{
{ "a", 123 },
{ "b", 123 },
{ "c", 123 },
{ "d", 123 } };
How to pass this array to another activity???
and then in that activity, how can I retrieve this array???
You can create one bundle in bundle put parceable array list provided by labeeb and set to intent here is the code for
And get data into another activity like