10

How do I store and retrieve an array list of values in a Bundle in Android? Any examples?

Pang
  • 8,605
  • 144
  • 77
  • 113
mohan
  • 11,969
  • 29
  • 102
  • 172

3 Answers3

20

Lets take if you array list has strings in it.

ArrayList<String> al = new ArrayList<String>();
al.add("test1");
al.add("test2");
al.add("test3");

Now you can put it into bundle as follows:

Bundle value= new Bundle();
value.putStringArrayList("temp1", al);

If you have your own object type instead of "String" in ArrayList then you need to serialize that ArrayList object.

Umakant Patil
  • 2,035
  • 4
  • 25
  • 54
3

Serialize your arraylist using the Parcelable class. You can add Parcelables to the Bundle.

Vadim Kotov
  • 7,103
  • 8
  • 44
  • 57
eMich
  • 1,736
  • 1
  • 14
  • 16
1

The only way to store an arraylist in bundle, if this arraylist can not be explain as an array of any primary type (int, char, etc...), is to serialize the data and to store it in the bundle as serializable.

Khetzal
  • 286
  • 1
  • 5