I'm fairly new to dealing with json, currently working with Google Places API to get restaurant details. I've already tried to decode it by followig articles such as
but it has been of no use as my json string is quite complex as far as my understanding is concerned
I'm getting json via Volley API using this particular function
public String getVolleyURL() {
String query = null;
// query = SEARCH_QUERY + "&location=" + lat + "," + lon + "&radius=" + radius;
query = "&location=" + lat + "," +longg + "&radius=" + radius;
query = SEARCH_URL + query + "&key=" + GOOGLE_PLACE_KEY;
Log.wtf(TAG, "Volley_URL = " + query);
return query;
}
which returns the following Json string
{
"html_attributions" : [],
"results" : [
{
"formatted_address" : "Metropolitan Life North Building, 11 Madison Ave, New York, NY 10010, Verenigde Staten",
"geometry" : {
"location" : {
"lat" : 40.74169,
"lng" : -73.9872068
},
"viewport" : {
"northeast" : {
"lat" : 40.74190884999999,
"lng" : -73.98716930000001
},
"southwest" : {
"lat" : 40.74161705,
"lng" : -73.98731529999999
}
}
},
"icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png",
"id" : "f758e0d7f68c659682afdb4b1c0749e7d3623839",
"name" : "Eleven Madison Park",
"opening_hours" : {
"open_now" : false,
"weekday_text" : []
},
"photos" : [
{
"height" : 1200,
"html_attributions" : [
"\u003ca href=\"https://maps.google.com/maps/contrib/102127816559576392189/photos\"\u003eTammy Liu\u003c/a\u003e"
],
"photo_reference" : "CoQBdwAAACwNCAsIpt6Li3P49bVZfSX8yDOA3QTsPsgc52jYRliBNBEqboYcE409Wf-ZYIae__HbKvaW1Xed-lnKjr0dus2Gbnn1Y8PTH_7HX89aiDo4lTASyuU8N7DxHndhiAXPqY-ZKozOzLcSYA7tP50_-caFILD36WpSQJIEWSPu3cgzEhCQ7c2ltmabHZsR88s-gc8kGhShA5LDudy3ZvcDAjalj9yn_KR7bw",
"width" : 1800
}
],
"place_id" : "ChIJEWbXz6ZZwokRLKmKrtPfVFY",
"price_level" : 4,
"rating" : 4.5,
"reference" : "CnRmAAAAWyhPb38cmZ765RA05cPPZkYqZbRGtDOOQi8d5yNuwCrvezX4liYo6DFNOdr8c-v2wwwnD9OqODteeO9oto9wNGI3F0ORvjKYCAwaNwGOMc2x8JYUljND4XmG41s0d44OXWxzloUQgRubjuFEDpTkhBIQAeucZk-7vCj6xP76Mkwt2RoUMaR7pkhrawYFttRUBIYellvYoJc",
"types" : [ "restaurant", "bar", "food", "point_of_interest", "establishment" ]
}
],
"status" : "OK"
}
Any sort of help would REALLY be appreciated! Thank you