从通话记录中获取最近联系的不同联系人

发布于 2024-10-19 10:20:04 字数 86 浏览 1 评论 0原文

由于在查询 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

墨洒年华 2024-10-26 10:20:04

它不会是一个 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

指尖凝香 2024-10-26 10:20:04
    Cursor cursor = getActivity().getContentResolver().query(ContactsContract.Contacts.CONTENT_URI, null, "TIMES_CONTACTED>0", null, "CONTACT_LAST_UPDATED_TIMESTAMP DESC");

使用此游标查询。我假设您已使用哈希集来删除重复的联系人。

    Cursor cursor = getActivity().getContentResolver().query(ContactsContract.Contacts.CONTENT_URI, null, "TIMES_CONTACTED>0", null, "CONTACT_LAST_UPDATED_TIMESTAMP DESC");

Use this cursor query.I am assuming that you have used Hash Set to remove duplicate contacts.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文