1

How to parse below json in multilevel expandable listview Any idea or suggesstion is 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"
                    ]
                }
            ]
        }
    }
KDeogharkar
  • 10,939
  • 7
  • 51
  • 95
Suhas
  • 65
  • 1
  • 10
  • [check](http://www.tutorialsbuzz.com/2015/02/android-expandable-listview-json-http.html) – KDeogharkar Jun 11 '16 at 05:38
  • thanks for link but My problem is like Company ->HR Admin Tecnology ->team1 ->members ->team2 ->members – Suhas Jun 11 '16 at 05:46
  • Pls read http://stackoverflow.com/questions/32880281/how-to-add-three-level-listview-in-expandablelistview-in-android/ then apply to your app although it's simpler – BNK Jun 11 '16 at 08:24

0 Answers0