2D 配列をパラメーターとして別のアクティビティに渡す方法は?? フロー ソリューションにスタックしてみますが、動作しませんアクティビティ 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");