Hello guys I\'m trying to decode a JSON value into my Android Application, But I\'m not really sure What Am I doing wrong in my code...
This is my PHP file:
There are a couple of options for you available to achieve this.
Personally i like to use the built in JSON parser in Android
JSONObject jObject = new JSONObject(result);
You can also use Google's json parse library https://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/com/google/gson/Gson.html
Also see this link for details on how to actually parse JSON and get Strings that you can use in your program. How to parse JSON in Android