|
|
|
|
72
|
@SuppressWarnings("unchecked")
|
72
|
@SuppressWarnings("unchecked")
|
73
|
private static Bundle[] toBundleArray(ArrayList<HashMap> arrayList) {
|
73
|
private static Bundle[] toBundleArray(ArrayList<HashMap> arrayList) {
|
74
|
Bundle[] ret = new Bundle[arrayList.size()];
|
74
|
Bundle[] ret = new Bundle[arrayList.size()];
|
75
|
- for (int i=0; i < ret.length; i++)
|
|
|
|
|
75
|
+ for (int i=0; i < ret.length; i++) {
|
76
|
ret[i] = addMapToBundle(arrayList.get(i), new Bundle());
|
76
|
ret[i] = addMapToBundle(arrayList.get(i), new Bundle());
|
|
|
77
|
+ }
|
77
|
return ret;
|
78
|
return ret;
|
78
|
}
|
79
|
}
|
79
|
|
80
|
|