I am trying to send data from drupal website to android app in the form of json. i have created the link and now my link is returning data in this form. i don't have any idea how to parse this formatted data to show in a list view in android app.
{
"nodes" : [
{
"node" : {
"title" : "Saksham Iron Store",
"Contact" : "09216630565",
"Category" : "Decoration & Hardware",
"City" : "Sangrur"
}
},
{
"node" : {
"title" : "Loaffer Hut Garments",
"Contact" : "8591697698",
"Category" : "Fashion & Garments",
"City" : "Sangrur"
}
},
{
"node" : {
"title" : "BCB English Academy and Visa Guidance",
"Contact" : "8699010091",
"Category" : "Education",
"City" : "Sangrur"
}
},
{
"node" : {
"title" : "Aggarwal Engineering Corporation",
"Contact" : "9417070197",
"Category" : "Decoration & Hardware",
"City" : "Sangrur"
}
},
{
"node" : {
"title" : "Inder Sain Paint and Decoration",
"Contact" : "9888821904",
"Category" : "Decoration & Hardware",
"City" : "Sangrur"
}
}
]
}
How can i parse it and show in listview in android app?