我想将2d字符串数组传递给新活动。我看到很多答案,但我没有得到任何人。我怎么能这样做。
答案 0 :(得分:2)
使用
Intent mIntent = new Intent(this, Example.class);
Bundle mBundle = new Bundle();
mBundle.putSerializable("list", selected_list);
mIntent.putExtras(mBundle);
要获取传递的数组
String[][] passedString_list = (String[][]) bundle.getSerializable("list");