So after watching the very know video on this topic i decided to go with design pattern B. Using a contentprovider with servicehelper.

google design pattern on rest

Basicly i have the following files:

  • MyProvider
  • MyDatabase
  • Mycontract

in the activity i can now get the contentresolver and query the provider. All is working great so far.

Now i need to sync my contentprovider to fetch data from my REST API. Thus i need to implement a service helper service and Rest method. Studying the Google IO app has helped me alot, im novice with android so it's still hard to figure it out.

I see Google uses RemoteHandlers to process the external data, i guess they are the Processor classes in the diagram?

What i dont understand is how i can implement the servicehelper + service part to get the data from the network.

  • Where do i call on the service helper?
  • what does the service and helper need to do exactly?
  • are there any good examples of this exact design pattern?

I have read several topics on stack about this, all suggesting different methods. I found an example wich declares a restprovider and then myProvider has to extend that provider. I dont like those solutions and want to follow this structured design pattern. Im hoping you guys can help me out!

link|improve this question

Do you have a link to the Google IO video you reference? – johncarl Feb 5 at 23:46
I think that you can find all your answers in this project : github.com/necronet/Eli-G it has been detailed in this SO post. – Zakaria Feb 5 at 23:52
Hello Zakaria, I found that example a week ago but its a very dirty implementation of that pattern. It creates another Contentprovider to handle the REST instead of a service. Thanks for your reply though but im looking for the full implementation of the pattern as described in the image. @John youtube.com/watch?v=xHXn3Kg2IQE – Sam vdb Feb 6 at 8:10
@Zakaria, my previous reply was not correct. I confused this project with other code i had here. I already looked at Eli-g's code but im having a hard time grasping its logic. Im willing to approve an awnser which fully explains eli-g's logic. Thanks for the replies so far – Sam vdb Feb 6 at 10:47
@Samvdb : Did you have a look at the SO post where Eli-G explains that logic ? – Zakaria Feb 6 at 12:55
show 1 more comment
feedback

1 Answer

up vote 4 down vote accepted
+50

In my understanding the pattern is:

  • Don't show an empty activity and load the content in the background. When the loading fails you cannot display anything.
  • Instead display data stored in the db accessible via a content provider and an adapter - this guarantees that the user always see a content
  • In the background fetch new data, once the data is on the phone the activity is automatically updated through the adapter

To your questions (I changed the order):

Where do i call on the service helper?
I choose pattern A from Vigils talk. In that case the call depends on your application. You could trigger the update when the application starts, when the activity is created or when the user selects an update button. I would choose at activity creation.

You have choosen pattern B. In that case it is clear that the content provider has to trigger the update. When? For getting new data: at creation time or after the first read access. I would use the creation time. For create, update, delete after the corresponding action in your content provider.

Are there any good examples of this exact design pattern?
From my post at http://stackoverflow.com/a/8693919/734687: the only open source reference implementation I know is available under http://datadroid.foxykeep.com. It is a library which you can use in your own application. The architecture is explained under /presentation - make sure you read it.

what does the service helper need to do exactly?
If you look at the slides at slide 19 it is a singleton which encapsulates the call to the service and handles the asynchronous calls via request ids.

what does the service need to do exactly?
The service (slide 17 in the presentation) just ensures that the action is performed in the background.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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