我想将二维字符串数组传递给新活动。我看到了很多答案,但我没有得到任何人。我怎样才能做到这一点。
问问题
660 次
1 回答
2
use
Intent mIntent = new Intent(this, Example.class);
Bundle mBundle = new Bundle();
mBundle.putSerializable("list", selected_list);
mIntent.putExtras(mBundle);
To get the passed array use
String[][] passedString_list = (String[][]) bundle.getSerializable("list");
于 2012-10-18T15:24:05.563 回答