I need help with parsing json string in Java Android Appl.
Text of JSON file:
{\"data\":{\"columns\":[\"location_id\",\"name\",\"description\",\"lati
First of all, you need to know about Json parsing in android, so for that first read this: JSONObject, in that class, you will see the below methods:
and many more methods to be used while implementing JSON parsing in android.
And if you are still confused then click on below link to have many examples available on web: Android JSON Parsing