The scenario is the following:

  • I've got an android app that basically consists of a mapview.
  • This app queries various web services such us foursquare or wikipedia to obtain a list of locations and plot them into the map.

The question,

  • Does anybody know how to build a Content Provider where the data source is a web service (like the ones mentioned above) and not a db? It'd be great if you could point me in the right direction.

Thanks!

link|improve this question

40% accept rate
I just want to do the same, but instead of directly querying the web service it'd be the content provider the one doing it. In this way, I could use external apps to connect to different web services. – androidtje Jan 18 '11 at 15:32
feedback

1 Answer

Check out Novoda's RESTProvider. I think it offers what you want, though documentation is a bit sparse at this time. From the Novoda Web site:

Providers offer an abstraction from data sources on Android and the RESTProvider Automatically parses RESTful API responses into a Provider. RESTProvider is an implementation of all commonly re-implemented functionality when dealing with web services in Android. Users can seamlessly interface with any Web Service API which provides JSON or XML as a response. To query a RESTProvider in an activity a user need only specify an endpoint and then query an APIs RESTful functions. RESTProvider also handles all HTTP querying & caching.

link|improve this answer
Thanks for the quick reply :) I'll give it a try! – androidtje Jan 18 '11 at 15:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.