在 Android 中,使用 Bundle 存储和检索数组列表值,但我无法检索此数组列表值,请帮助我
提前致谢
我试过这个:
ArrayList<String> al = new ArrayList<String>();
al.add(""+StrValue);
Bundle value= new Bundle();
value.putStringArrayList("temp1", al);
ArrayList<String> al = new ArrayList<String>();
Bundle bundle =new Bundle();
System.out.println("Retrieve Values are: "+bundle.getStringArrayList("temp1"));
Finally i got the result is Retrieve Values are (null)