Questions tagged [datadroid]

An Android Library that facilitates the management of local (databases) and remote (REST web services) data in your Android applications

DataDroid is an Android Library created by Nicolas Klein, which facilitates the development of Android applications when you have to manage local data or call REST web service for remote data.

Resources

License

DataDroid is available under the BeerWare license.

8 questions
2
votes
1 answer

How to cancel or remove request with DataDroid

I am using DataDroid (http://www.datadroidlib.com/) in my android app to execute Rest API. Suppose I have a queue of requests like this: Call getInbox Call getFeedbackFilterByFeedbackId Call getInbox Call getFeedbackFilterByFeedbackId Call…
Nguyen Minh Binh
  • 23,891
  • 30
  • 115
  • 165
1
vote
1 answer

RoboSpice or DataDroid for local SQL DB syncing using WiFi Direct and/or BT connected Android devices?

I need to have two or more Android devices connected via WiFi Direct(preferably) or BT that share a DB stored on each device. The DB can be updated by any of the connected devices and must send out the changes and update any/all devices running the…
Jim D.
  • 91
  • 1
  • 9
1
vote
0 answers

Web service call from android using DataDroid library not returning data to activity

Below I've listed my activity code, call out to the web service, and the json parsing class I created to parse the web service results. I'm trying to pass a user object back to the activity to determine what they can/can't do, however, I'm not…
Brandon
  • 103
  • 1
  • 5
  • 11
1
vote
1 answer

Datadroid and sliding menu / HoloEverwhere

I am trying to use Datadroid and sliding menu/HoloEverywhere. Sliding menu is using Fragment. Is it possible that Datadroid will be a Fragment to a main activity? :) I have successfully made a datadroid app in just one activity like this: public…
Chris Ian
  • 771
  • 1
  • 7
  • 19
0
votes
0 answers

I am Using AMD processor for android programming with eclipse but but keep having this broken Google download Icon

I perceive it is as a result of the broken icon on my installed sdk that has prevented me from installing creating and completely programming any app using the computer. I will greatly appreciate help from anyone who has been faced with this before…
0
votes
2 answers

execute request without adding listner

In DataDroid Library, for executing request we use execute(request, listner) Is there any method for executing request without using listner? I need to send Information to server and for which the response is not related to user.So, I will…
Shanki Bansal
  • 1,681
  • 2
  • 22
  • 32
0
votes
1 answer

Image downloads and caching with Datadroid

My app will use DataDroid for REST client queries. Some ListViews in the app will display data with profile pictures, and these pictures are not downloaded with REST / as JSON. They are direct binary HTTP downloads. The only thing that is REST…
Kay Zed
  • 1,304
  • 2
  • 21
  • 31
0
votes
1 answer

How to parse only one Json object in Datadroid?

I am trying parse only one json object, but the method only work if i have more than one element. In the JsonFactory class. I think it is a bug. public static ArrayList parseResult(String wsResponse) throws DataException { …