How to parse below JSON with the help of volley library, i want distance and duration values.I am new in Android
{
"destination_addresses":[
"D1, A Block, Sector 59, Noida, Uttar Pradesh 201301, India"
],
"origin_addresses":[
"School Block, Block S1, Nanakpura, Shakarpur Khas, New Delhi, Delhi 110092, India"
],
"rows":[
{
"elements":[
{
"distance":{
"text":"13.8 km",
"value":13751
},
"duration":{
"text":"28 mins",
"value":1674
},
"status":"OK"
}
]
}
],
"status":"OK"
}