我真的不明白为什么内容观察者会听取与联系信息无关的更改.
我只是注册了我想听的变化的URI:
getContentResolver().registerContentObserver(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,true,contactsObserver);
但在给别人打电话或发短信后,它会在ContentObserver中触发并调用onChange方法.所以我需要将所有联系人列表与我的应用程序重新同步,尽管我不需要这样做.
只有我感兴趣的领域:
> ContactsContract.CommonDataKinds.Phone.CONTACT_ID
> ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME
> ContactsContract.CommonDataKinds.Phone.NUMBER
我应该实现哪些更改来监听此数据库项目的更改?