tags:

views:

18

answers:

1

I am writing a simple Android app and have a database that will send back information into the app. I am new to Android and am looking for a simple example that demonstrates how the Android App can process a JSON response received from a HTTP request.

I need to see what classes are used for Android apps to process a HTTP response. A reference to a good tutorial, or if you're keen, write a very basic method to do the job. Thanks

+1  A: 

Take a look to: JSON Parsing in android or Android as a RESTful Client.

Also read Handling Expensive Operations in the UI Thread to be sure that your application is not "hanging" if content retrieval takes time.

Laimoncijus
Those 2 links were really helpful. Seems to cover the topic enough for me. So you get the "correcta-mundo". Thanks!!!
giulio