I have JSON Response like this :
{
"ResponseCode": "000",
"ResponseDescription": "Successful",
"ResponseData": [
[
"RequestID",
"ProviderAuditID",
"RequestTime",
"Product",
"ProductCode",
"Currency",
"Value",
"ValueRes",
"ValuePro",
"TransactionResponseCode",
"TransactionResponseDescription"
],
[
"23",
null,
"2013-07-22 07:09:06",
"Test Product",
"098",
"India",
"456.000000",
"456.000000",
"456.000000",
null,
null
],
]
}
Now i want to parse this value and set it into the list view so can anyone help me out how to achieve this ???
EDIT ::
I have the multiple values in parsing,this is just an example ...
"ResponseData": { "RequestID" : 23, "ProviderAuditID" : "id", ... }