Native contact change notification

前端 未结 1 1711
一生所求
一生所求 2020-12-21 00:07

How can I get callback in my application whenever a contact is added or deleted or changed ? Is there any standard broadcast intent that I can register a BroadcastReceiver f

相关标签:
1条回答
  • 2020-12-21 01:00

    No BroadcastReceiver available for notifying contacts changes. You may need to use ContentObserver to get notified. Lots discussions happened to here on how to receive Contacts change notification via ContentObserver. Try searching for it.

    Another way of getting notified, is by using SyncAdapters. Look into here for info http://www.c99.org/2010/01/23/writing-an-android-sync-provider-part-2/

    0 讨论(0)
提交回复
热议问题