从联系人获取 IM 属性

发布于 2024-10-18 04:56:06 字数 184 浏览 1 评论 0原文

我正在为 android 编写一个 jabber Messenger,并且想检查潜在聊天伙伴的电话联系人列表;)

无法弄清楚如何获取联系人的特定属性。获取 DisplayName 不是问题,获取 IM 用户名才是问题。

有人可以发布一个查询和提取 jabber 用户名的代码吗?我只是不明白

提前谢谢 中号

I am writing a jabber messenger for android and would like to check the Phone Contact list for potential chat partners ;)

Cannot figure out how to get the specific property of the Contact. Getting DisplayName is not the Problem but getting IM UserNames.

Can somebody maybe just post a query and the code where the jabber UserName is extracted? I just don't get it

Thanks in advance
M

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

叹梦 2024-10-25 04:56:06

如果您查看 ContactsContract.DataContactsContract.CommonDataKinds.Im,您会找到您需要的一切。

基本上,您必须查询 MIMETYPE = Im.CONTENT_ITEM_TYPEDATA5 = PROTOCOL_JABBER 的行。该联系人的 jabber 用户名存储在 DATA1 中。

If you look at the documentation for ContactsContract.Data and ContactsContract.CommonDataKinds.Im, you will find everything you need.

Basically, you have to query the rows where MIMETYPE = Im.CONTENT_ITEM_TYPE and DATA5 = PROTOCOL_JABBER. The jabber username of this contact is stored in DATA1.

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