• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

How to parse following nested json array in android using volley library

anirudha

Lurker
{
"response": [
{
"group": "PCB",
"subject":"Physics"
"questions": [
{
"id": 1,
"question": "question1",
"op1": "option1",
"op2": "option2",
"op3": "option3",
"op4": "option4",
"ans": "correct ans"
},
{
"id": 2,
"question": "question2",
"op1": "option1",
"op2": "option2",
"op3": "option3",
"op4": "option4",
"ans": "correct ans"

},
{
"id": 3,
"question": "question3",
"op1": "option1",
"op2": "option2",
"op3": "option3",
"op4": "option4",
"ans": "correct ans"
}

]
}
]
}
 
Back
Top Bottom