{
places: [
{
id: 1,
place:"America",
name: "Robert",
age: "22",
place_lat: "10.017",
place_lon: "76.344"
},
{
id: 1,
place:"America",
name: "Albert",
age: "22",
place_lat: "10.017",
place_lon: "76.344"
},
{
id: 2,
place:"China",
name: "Robert",
age: "22",
place_lat: "10.017",
place_lon: "76.344"
}
,
{
id: 2,
place:"China",
name: "Albert",
age: "20",
place_lat: "10.017",
place_lon: "76.344"
},
{
id: 4,
place:"Paris",
name: "Albert",
age: "20",
place_lat: "10.017",
place_lon: "76.344"
}
],
success: 1
}
Using this json values, I want to show this in a list view, My expected result is
America Name:Robert Age:22 Name:Albert Age:22
China Name:Robert Age:20 Name:Albert Age:20
Paris Name:Albert Age:20
I want to add like this in a list view. But i couldn't make. I got like this in a listview
America Name:Robert Age:22 America Name:Albert Age:22
China Name:Robert Age:20 China Name:Albert Age:20
Paris Name:Albert Age:20