Hi,
I was trying to register for any changes to the Contact.People DB as
follows:
       registerContentObserver(Contacts.People.CONTENT_URI, true, co);
And in my ContentObserver class I had the following:
             public void onChange(boolean change) {
                Log.v( " Contact List updated" );
                }

This use to work in Cupcake and I use to get the call to "onChange"
only when a new contact was added, a contact was deleted or an
existing contact was modified. But in Eclair I keep on receiving
'onChange" even after a call has been made to an existing contact (I
guess because of the "last_time_contacted " field in the DB).

I tried registering for other DB (like "Data" and "Raw_Contacts") also
but experienced same issue.

My question was that for Eclair is there a DB that I can register for
which will only be triggered if a new contact was added or old contact
was deleted or the contact name was modified?
Thanks

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to