forum

Home / DeveloperSection / Forums / How to get the information of updated contact in android whenever we add/update/delete any contact in phone contact list

How to get the information of updated contact in android whenever we add/update/delete any contact in phone contact list

Allen Scott 1611 16-Nov-2015
In my implementation, i want to get the information of changed contact whenever a contact is modified or deleted in the phone contact list.Whenever we modify or delete contact, deliverSelfNotifications() and onChange() method is called but i am not getting how to get the information of this changed contact

MyContentObserver contentObserver = new MyContentObserver();
    getApplicationContext().getContentResolver().registerContentObserver(
            ContactsContract.Contacts.CONTENT_URI, true, contentObserver);
    private class MyContentObserver extends ContentObserver {
        public MyContentObserver() {
            super(null);
        }
        @Override
        public boolean deliverSelfNotifications() {
            return true;
        }
        @Override
        public void onChange(boolean selfChange) {
            super.onChange(selfChange);

        }
    }
Please help

Updated on 16-Nov-2015

Can you answer this question?


Answer

1 Answers

Liked By