如何传递2d String array
给new activity
???
然后在新活动中,我怎样才能retrieve
阵列?
如何传递2d String array
给new activity
???
然后在新活动中,我怎样才能retrieve
阵列?
你必须使用:
String [][]str;
Intent summaryIntent = new Intent(this, Second.class);
Bundle b=new Bundle();
b.putSerializable("Array", str);
summaryIntent.putExtras(b);
startActivity(summaryIntent);
对于接收阵列使用:
Bundle b = getIntent().getExtras();
String[][] list_array = (String[][])b.getSerializable("Array");
谢谢