アクティビティにバンドルが含まれているかどうかを確認するにはどうすればよいですか?ここ
は私が私の最初の活動バンドルを含むアクティビティ
Intent i = new Intent(Activity1.this,Activity2.class);
Bundle bundle = new Bundle();
bundle.putStringArray("contact_to_bundle", new String[]{nomStr, prenomStr, numeroStr, imageStr});
i.putExtras(bundle);
startActivity(i);
@AndiMこのanwersは私の問題を解決どうもありがとうございました。 –