从通话记录中获取最近联系的不同联系人
由于在查询 CallLog.Calls.CONTENT_URI 时无法使用 DISTINCT,因此从呼叫日志中获取不同的最近联系的联系人有什么好的解决方法吗?
Since it is not possible to use DISTINCT while querying the CallLog.Calls.CONTENT_URI, what can be a good workaround for getting the distinct most recently contacted contacts from the call logs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它不会是一个 GET 不同的,但如果你得到它们然后将它们存储到一个 Set 中,比如一个 TreeSet,你会留下一个不同的列表。
华泰
It wouldn't be a GET distinct, but if you got them then stored them into a Set, say a TreeSet you'd be left with a distinct list.
HTH
使用此游标查询。我假设您已使用哈希集来删除重复的联系人。
Use this cursor query.I am assuming that you have used Hash Set to remove duplicate contacts.