String s1 = e1.getText().toString();
String s2 = e2.getText().toString();
String s3 = e3.getText().toString();
Intent updateIntent = new Intent(DetailActivity.this,MainActivity.class);
Bundle bundle = new Bundle();
bundle.putString("name", s1);
bundle.putString("lat", s2);
bundle.putString("lon", s3);
updateIntent.putExtras(bundle);
これは、データを配置する最初のクラスです。コードで使用している最初のクラスに、すぐに使用する2番目のクラスのデータを送信しました。ここで、これらのバンドル データを最初のクラスで再び使用する必要があります。JSONからデータを入れたArrayListアイテムがあります。最初のクラスでこれらのデータを再度変更する必要があります。私の問題を説明していただければ幸いです。