我可以通过 Smack 将在线用户添加到我的好友列表中吗?
我可以通过 Smack API 将在线用户添加到我的好友列表中吗?是否可以?
我正在开发可以在用户之间聊天的应用程序。我已经成功创建了聊天应用程序示例,只需输入朋友的姓名并发送聊天,但现在我想要在线朋友列表。
Can i get online users in my friend list via Smack API? Is it possible?
I am working on app which have chat between users. I had successfully created chat application example just entering name of friend and send chat, but now I want online friends list.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
因此,在程序开始时注册 XMPPConnection 侦听器,通常需要几秒钟才能接收连接对象。
但只有当您使用 creatEntry 时,它才会起作用,只有在这种情况下,rooster 才会看到那些创建的用户。
要使用名册创建条目,请使用下一个代码:
我没有使用任何组,并且成功地在第二台设备上看到用户。
So at the start of your program register that XMPPConnection listener, usually it take few seconds to receive connection object.
But it will work only if you will use creatEntry only in that case rooster will see those created users.
To creat entry using Roster use next code:
I didn't use any group, and with success see user on second device.
参考此链接
reference from this link
使用
presence.getMode()
方法获取用户的模式。Mode 是枚举,其值可以是 chat、available、away、xa、dnd。
Use the
presence.getMode()
method to get Mode of User.Mode is enum and its value can be chat, available, away, xa, dnd.