I'm trying to add two JSONArray objects together.
JSONArray items_one;
JSONArray items_two;
JSONArray items_three;
JSONArray items_four;
items_one = obj_one.getJSONArray("one");
items_two = obj_two.getJSONArray("two");
items_three = obj_three.getJSONArray("three");
items_four = obj_four.getJSONArray("four");
JSONArray items;
// add all together
items = items_one.add(items_two).add(items_three).add(items_four);
int i;
for (i=1;i<=items.length();i++)
{
Log.e(TAG, i + "/"+ items.length());
}
obviously this line: items = items_one.add(items_two).add(items_three).add(items_four); will not work, if anyone could assist I'd be grateful! Thanks..