I want to pass a 2-D String Array to another activity. My S2-D String Array (String[][]) is \'selected_list\'.
code is :
Bundle list_bundle=new
You can use putSerializable. Arrays are serializable, provided their elements are.
To store:
list_bundle.putSerializable("lists", selected_list);
To access:
String[][] selected_list = (String[][]) bundle.getSerializable("lists");