如何将二维数组作为参数传递给另一个活动?我尝试将它堆叠在流解决方案上,但在活动 1 中使用此代码不起作用我在此行中正确显示值 bundle.putSerializable("xmlResponee", xmlRespone); 但是在activity2类中没有显示值有什么问题?请告诉我
public class Activity1 extends Activity {
private String[][] xmlRespone;
Intent i = new Intent(this.getApplicationContext(), Activity2.class);
Bundle bundle = new Bundle();
bundle.putSerializable("xmlResponee", xmlRespone);
i.putExtras(bundle);
startActivity(i);
和
public class Activity2 extends Activity {
private String[][] xmlRespone;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity2);
Bundle bundle = getIntent().getExtras();
String[][] xmlRespone2 = (String[][]) bundle.getSerializable("xmlResponee");