i am beginner at android can anybody tell me how to parse All Json arrays that come under one fix array i want to parse all array name in parents
Following is the sample Json:
{
  "err-code": 0,
  "worksheet": [
    {
      "2016-08-19": [
        {
          "worksheet_id": 130,
          "job_no": "ES100353-AF",
          "message": "Matthew Smith has submitted Worksheet for Approval",
          "added_date": "19 Aug 2016",
          "added_time": "06:31 AM",
          "status": "Pending"
        }
      ],
      "2016-08-18": [
        {
          "worksheet_id": 107,
          "job_no": "ES100353-AF",
          "message": "Matthew Smith has submitted Worksheet for Approval",
          "added_date": "18 Aug 2016",
          "added_time": "05:31 AM",
          "status": "Pending"
        }
      ]
    }
  ]
} 
 
     
     
     
    