在对 Android 联系人使用 ContentObserver 时,是否有一种简单的方法可以知道哪个联系人发生了变化?
我在我的应用程序中存储了一些联系人,并想知道用户是否通过联系人应用程序编辑了其中的任何一个。所以我为此注册了一个 contentObserver。 contentObserver 的“onChange()”方法除了“selfChange”布尔参数外不提供任何其他内容。那么,除了循环访问每个联系人并比较更改字段之外,还有什么方法可以找到哪个联系人发生了更改?
I store some contacts in my app and want to know if any one of them is edited by user through the contact app. So I register a contentObserver for this. The 'onChange()' method for the contentObserver doesn't provide anything other than 'selfChange' boolean parameter. So is there any way I can find which contact changed other that looping through every contact and comparing the fields for changes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这与我有同样的问题提出,到目前为止,除了循环之外似乎没有其他有意义的方法。
That is the same question that I have posed and so far, it does not appear there is a meaningful way other than looping through.