[Solved] Android: Parse the Nested JSON Array and JSON Object


Try to use this

 JSONObject jsono = new JSONObject(data);
            jarray = jsono.getJSONArray("posts");

            for (int i = 0; i < jarray.length(); i++) {
                 JSONObject object = jarray.getJSONObject(i);
                    JSONObject bigImage = object.getJSONObject("thumbnail_images");
                    JSONObject tiMed = bigImage.getJSONObject("medium");
                    String imageURL = tiMed.getString("url");
                    }

                }


                actor = new Actors();

                actor.setName(object.getString("title"));
                actor.setDescription(object.getString("url"));
                actor.setImage(imageURL);
                actor.setDob(object.getString("content"));

                actorsList.add(actor);
            }

5

solved Android: Parse the Nested JSON Array and JSON Object