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

decode json

galihcoda

Lurker
i have json data like this:

array(1) {
["category"]=> array() {
[0]=> array(3) {["id"]=> string(1) "1" ["name"]=> string(7) "General" ["section"]=> string(4) "news" }
[1]=> array(3) {["id"]=> string(1) "2" ["name"]=> string(8) "Top News" ["section"]=> string(4) "news" }
[2]=> array(3) { ["id"]=> string(1) "3" ["name"]=> string(13) "Press Release" ["section"]=> string(4) "news" }
[3]=> array(3) { ["id"]=> string(1) "4" ["name"]=> string(13) "Mobile Device" ["section"]=> string(6) "review" }
[4]=> array(3) { ["id"]=> string(1) "5" ["name"]=> string(18) "Mobile Application" ["section"]=> string(6) "review" }
}
}

how can i do to use in android, like to view name in listview.
I hope solution for this problem, thanks for assist
 
Back
Top Bottom