Android 通过 ID 获取联系人组
我有联系人 ID,如何获取联系人所属的组? 我确信这与 Contacts.Groups 类有关,但我无法弄清楚。
I have a contact ID, how do I get the group the contact is assigned to? I am sure it is something to do with the Contacts.Groups class but I cannot figure it out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
GroupMembership.PERSON_ID
中,您拥有人员的 ID,在同一个表GroupMembership.GROUP_ID
中,您拥有组的 ID。 您可以使用Contacts.Groups
检索组。请记住,每个“表”中都有唯一的 ID 来标识行。
希望这可以帮助。 (我也在努力)
In
GroupMembership.PERSON_ID
you have the ID of the Person, and in the same tableGroupMembership.GROUP_ID
you have the ID of the group. You can retrieve the groups with theContacts.Groups
.Remember that in every "table" there is and unique ID to identify the row.
Hope this helps. (Im working on it too)