こんにちは私はバンドルのコンセプトを使ってみましたが、クラスのコンセプトを使ってみましたが、arraylistの2番目のクラスではnull value.plaeseを示唆していました私はwherre ArrayListのがパブリック静的であるとき、あなたは直接ナclassname.arraylistを使用してアクセスすることができますstringarraylistの値を一つのクラスからandroidの別のクラスに渡す方法
Activity1.class:
public static ArrayList<String> customers = new ArrayList<String>();
customers.add("radha");
customers.add("aswini");
Intent i=new Intent(Activity1 .this,Activity2.class);
i.putExtra("customers1", customers);
Log.i("arrayvalues1",""+ customers);
startActivity(i);
Activity2.class:
String[] mystringArray = getIntent().getStringArrayExtra("customers1");
Log.i("arrayvalues2",""+ mystringArray);
2 answer..that上で読んでその作業 – user1105975