Is it possible to have a broadcast receiver or service to be notified when a phone contact is added, deleted or modified?

I am making an application that needs fast access to phone contact, for what i was thinking of one copy sqlite phone contacts as accessed through contactsContracts.

If it's not possible, Does anyone know how to improve the response speed of the following code to see if a number is in the phone's contact list?

    public boolean isNumberInContacts(String Num){

    try {
        Cursor cursor = context.getContentResolver().query(ContactsContract.Contacts.CONTENT_URI, null, null, null, null);

        while (cursor.moveToNext()) {
            String colID = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts._ID)); 
            String hasPhone = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER)); 

            if (Integer.parseInt(hasPhone)==1) {

                Cursor phone = context.getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
                    null,ContactsContract.CommonDataKinds.Phone.CONTACT_ID +" = "+ colID,null, null); 

                for (int i=0;phone.moveToNext();i++){
                    if (Num.equals(mNumber.getNumber((phone.getString(phone.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER)))))){
                        return true;                        
                    }
                }
            }
        }
        cursor.close();
    } catch (Exception e) { 
        e.printStackTrace(); 
        Log.d(TAG, "Error when validate number in contacts: "+ e.toString()); 
    }       
    return false;
}

Thanks

link|improve this question

70% accept rate
Sync adapters can allow you to do this, developer.android.com/resources/samples/SampleSyncAdapter/… - it does however require the user to have sync enabled. – Jens Nov 7 '11 at 23:14
feedback

1 Answer

up vote 1 down vote accepted

no broadcast when a contact is added. register a content observer in the contacts database to check for changes to it.

link|improve this answer
could you get me an example of this? Thanks – itaravika Nov 7 '11 at 22:16
you're going to need a running service (or activity I guess) to have a content observer registered however. – Jens Nov 7 '11 at 23:15
this thread showed a very good example on how to make your own content observer stackoverflow.com/questions/1401280/… – Josephus Villarey Nov 8 '11 at 0:35
feedback

Your Answer

 
or
required, but never shown

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