I have this array list and i parsing list item from json like this ,
List<String> imageUrls;
imageUrls = new ArrayList<>();
JSONArray imageArray = response.getJSONObject(feedKey).getJSONArray(entryKey).getJSONObject(i).getJSONArray(imageKey);
for (int j = 0; j < imageArray.length(); j++) {
String imageList = imageArray.getJSONObject(j).getString(labelKey).toString();
imageUrls.add(imageList);
}
appShowModule.setAllimage(imageUrls);
then i try to do this in another activity ,
intent.putStringArrayListExtra("list", appShowModule.getAllimage());
but "appShowModule.getAllimage()" is error ! and how i can received it ?