[Solved] How to parse this type of json array in android?
Try this. try { JSONObject jsonObject = new JSONObject(“JSONResponse”); String scode = jsonObject.optString(“scode”); JSONArray allmenuArray = jsonObject.optJSONArray(“all_menu”); for (int i = 0; i < allmenuArray.length(); i++) { JSONObject objectJson = allmenuArray.optJSONObject(i); boolean sub_menu = objectJson.getBoolean(“sub_menu”); String app_menu_id = objectJson.getString(“app_menu_id”); String app_menu_name = objectJson.getString(“app_menu_name”); JSONArray all_sub_menu = objectJson.getJSONArray(“all_sub_menu”); for (int j = 0; j < all_sub_menu.length(); … Read more