I have the following Json Format file:
[
{
"id": 1,
"game_genre": "RPG"
},
{
"id": 2,
"game_genre": "Action"
}
]
on a remote location: http://127.0.0.1:8000/genre/?format=json (Ddjango Format) and i want to populate an Android spinner with the respective id so that can perform a search later depending on the id of the genre. I read the other threads but since i am new into android i don't know where to start. i have the Json parser file included in my project