Isn't there a timestamp for each contact?

I need to be notified by a change (add, delele or change) to a contact. I've implemented a ContentObserver, but trough this method I'm only able to be notified if a change occurs on a contact, but I don't know which contact has been modified! Any suggestions?

link|improve this question
feedback

1 Answer

check ContactsContract.RawContacts Column

int DIRTY 

read/write Flag indicating that VERSION has changed, and this row needs to be synchronized by its owning account. The value is set to "1" automatically whenever the raw contact changes, unless the URI has the CALLER_IS_SYNCADAPTER query parameter specified. The sync adapter should always supply this query parameter to prevent unnecessary synchronization: user changes some data on the server, the sync adapter updates the contact on the phone (without the CALLER_IS_SYNCADAPTER flag) flag, which sets the DIRTY flag, which triggers a sync to bring the changes to the server.

This column is used by sync adapters to start sync for a contact when contact is modified. Check if you get anything from this.

link|improve this answer
I know this field, but I need to copy all the contacts in a saparete DB on the Android device.The problem is that if I change a contact the Dirty filed is setted to 1, but if I sync this contact with the relative account before I open my App, the Dirty field is setted to 0. Do you think I can use a Service to capture all the changes and store all the Ids whose Dirty flags have been modified in a separate Array (for example) ??? – Giancarlo Dec 7 '11 at 9:43
I have not used dirty field. But it should be modified by a update query manually. Do not use a service to monitor changes, use Singleton or Application class instead to check any changes in contacts. – om252345 Dec 7 '11 at 9:46
Singleton runs even if my app is not running??? Can you suggest me an example of how I can use singleton to chech any changes in contacts ??? Do I need to put inside the Singleton the ContentObserver ? – Giancarlo Dec 7 '11 at 11:58
1  
You can extend application class and put your observers inside that, that will be active even your activities from app is not active as long as your app is installed. Check this groups.google.com/group/android-developers/browse_thread/thread/… – om252345 Dec 7 '11 at 12:14
feedback

Your Answer

 
or
required, but never shown

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