I have this dummy response. I need to Show Result list in Spinner but with specific index. Like I don't want to show all list items in the spinner. I just wanted to show index 4,11,6 . How to sorting that.
{
"status": "OK",
"message": "Sucess",
"result": [
{
"id": 2,
"name": "DHAKA",
"countryId": "001"
},
{
"id": 4,
"name": "RAJSHAHI",
"countryId": "001"
},
{
"id": 11,
"name": "RANGPUR",
"countryId": "001"
},
{
"id": 6,
"name": "SYLHET",
"countryId": "001"
}
]
}