查询 Android 联系人以获取 ACCOUNT_TYPE 和 ACCOUNT_NAME
我可以获得联系人列表及其基本信息,例如:姓名。通过使用 ContactsContract.Contacts.CONTENT_URI
获取联系人列表以及不同信息类型的其他特定 URI,以实现电话、电子邮件、即时消息、笔记、组织的备份。
为了完全恢复所有信息,我需要另外两个字段:
ContactsContract.RawContacts.ACCOUNT_TYPE
ContactsContract.RawContacts.ACCOUNT_NAME
任何人都可以指导我如何在从 ContactsContract.Contacts.CONTENT_URI 知道联系人 ID 的情况下获取此信息吗?
谢谢
I am able to obtain a list of contacts and their basic information like: name. phones, emails, ims, notes, organizations for backup purposes by using ContactsContract.Contacts.CONTENT_URI
for a list of Contacts and other specific URIs for different information type.
I need, in order to fully restore all the information two more fields:
ContactsContract.RawContacts.ACCOUNT_TYPE
ContactsContract.RawContacts.ACCOUNT_NAME
Can anyone guide me how to obtain this info, knowing the Contact Id from ContactsContract.Contacts.CONTENT_URI ?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您正在使用 contactID 列查找帐户信息,以上答案是完美的。但是,信息通常是使用 rawContactID 存储的。因此,如果您想访问原始联系人 ID 的帐户信息,则可以使用下面的方法。
主要区别在于我使用的是 rawContacts 表中的 _ID 列。这映射到您将在其他表中看到的 rawContactID
The above answer is perfect if you are looking for account information using the contactID column. But, often information is stored using rawContactID. So, if you want to access account information for a raw-contact-id then you can use this method below.
The key difference is that I am using the _ID column from the rawContacts table. This maps to the rawContactID that you will see in other tables