I\'m developing an app that will make extensive HTTP requests.
I know for a fact that iOS has a third-party library called ASIHTTPRequest to manage and organize all the
Use https://github.com/loopj/android-async-http
Just like ASIHTTPRequest, this lib makes is easy to make async requests without worrying about threads or async tasks.
It even includes a JSON parser.
You can also use http://code.google.com/p/android-query/wiki/AsyncAPI which looks good
Update : Android has released which does exactly what you want : http://www.javacodegeeks.com/2013/06/android-volley-library-example.html