android - Mutlilevel expandable listview -
how parse below json in multilevel expandable listview idea or suggesstion appreciated.
 {         "company": {             "hr dept.": [],             "admin": [],             "technology": [                 {                     "t_name": "team1",                     "t_members": [                         "xyz",                         "pqr"                     ]                 },                 {                     "t_name": "team2",                     "t_members": [                         "stu",                         "wxy"                     ]                 },                 {                     "t_name": "team3",                     "t_members": [                         "abc",                         "def",                         "ghi"                     ]                 }             ]         }     }       
 
  
Comments
Post a Comment