我想把一个2d字符串数组传递给一个新的活动。我看到了许多答案,但没有得到任何答案。我怎么能这么做。
最佳答案
使用
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");