I try to understand the android sync logic. What I don't understand is this file http://developer.android.com/resources/samples/SampleSyncAdapter/res/xml/syncadapter.html

OK... now I've read a lot about it and it says is the authority of a content provider it should be a string or a reference to a resource. OK... but...

What exactly is contentAuthority and where is com.android.contacts (from the example)? Please explain in details if you can. Thx!

link|improve this question

61% accept rate
feedback

3 Answers

There are two basic methods you can use when making a SyncAdapter:

  1. Fill data into an existing ContentProvider.
  2. Create your own ContentProvider to store a new kind of data.

The former is what's going on in this example app. They have some website that has a list of contacts, and they want to store those along with the other contacts on the device. In either case, the way this all works is through a relationship between three components:

  1. A ContentProvider, which stores the data.
  2. A SyncAdapater, which communicates with a remote server to obtain data to put into the ContentProvider.
  3. The Android ContentResolver, which figures out how to pair up SyncAdapters and ContentProviders.

An Android device can have many different ContentProviders and many different SyncAdapters. Since a ContentResolver may not be part of the same .apk as a SyncAdapter, ContentResolver is a system service that finds the right contentProvider to store a given kind of data. It does this using the ContentAuthority string, which uniquely identifies one specific ContentProvider.

In this case, using an existing ContentProvider, you will need to look at the platform documentation to see what ContentAuthority string they use, and use the same string. If you're creating your own ContentProvider, you just need to ensure that the ContentAuthority you create is unique. The best way to do this is to use part of your domain name (java class style) in the Authority. This is illustrated in their example... com.android.contacts.

link|improve this answer
feedback

When your APK gets loaded, the directives in the manifest tell the OS to review all meta-data. In this case, it is content meta data for Android contacts. The name that is used to find the provider is com.android.contacts (defined by Android) -- and the owner has the "authority" to provide the content access to its data base (i.e., the ContentProvider).

N.B. You could be a content provider of your own data that can be sync'ed with your web services that is not contacts. The meta-data is a mechanism to register with the OS so you can find it during a broadcast message.

This defined meta-data is going to be associated with your SyncAdapter by virtue of the 'sync type' that you provide. The name of the type is the android:accountType and might be 'com.mycompany.myapp'. That key is used during a broadcast to all sync adapters and your coded BroadcastReceiver will handle the message with your type.

That is the start of the relationships and some breakdown of the terminology.

link|improve this answer
how does the android system know that a sync should be performed. Where is syncing requested? – bizso09 Feb 28 '11 at 22:31
2  
There are a few defaults that you can enable and you can define your own "sync now" intentions (Intents). To sync-now, you can "ContentResolver.requestSync(account, authority, extras);" (check SO question stackoverflow.com/questions/4465765/…). The Sync Adapter model supports a periodic sync, { AlarmManager.INTERVAL_DAY | INTERVAL_HALF_DAY | INTERVAL_FIFTEEN_MINUTES | etc.}. Also, the model will re-sync if there were errors during the active sync. – mobibob Apr 2 '11 at 20:51
feedback

I think it defines which resource your sync adapter is syncing. In this case with the Contactmanager which handles... the contacts?

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.