servabat
servabat

Reputation: 376

How to integrate a simple API in an Android application

I need to integrate a simple Web API in my Android application, and I was looking for a way to do that.

I was told I should use a service, but other peoples told be about Robospice, AsyncTasks, and Java Threads.

What should I use ? Is there some ressources out there ?

Upvotes: 0

Views: 4946

Answers (2)

Adarsh Yadav
Adarsh Yadav

Reputation: 3770

For more improved and fast response use Android Asynchronous Http Client with Gson library : You will find a complete tutorial here

Upvotes: 0

StephenG
StephenG

Reputation: 2881

This goes through integrating a Web API into an Android app step by step, using AsyncTask.

http://blog.strikeiron.com/bid/73189/Integrate-a-REST-API-into-Android-Application-in-less-than-15-minutes

Upvotes: 1

Related Questions