gpt4 book ai didi

java - Android:如何在quickblox中获取在线或离线用户状态?

转载 作者:太空宇宙 更新时间:2023-11-04 11:53:24 24 4
gpt4 key购买 nike

我无法在 Quickblox 中获取用户离线和在线状态。在 Quickblox 的简单聊天演示中。我正在使用This用于聊天的演示。但我无法获取用户在线离线状态。我已经搜索并引用了很多链接,但没有成功。谢谢提前。

引用链接:

https://github.com/QuickBlox/quickblox-android-sdk/tree/master/sample-chat https://github.com/QuickBlox/quickblox-android-sdk http://quickblox.com/developers/SimpleSample-users-android https://assist.quickblox.com/index.php?/Knowledgebase/Article/View/35/0/how-to-find-out-whether-quickblox-user-is-online https://quickblox.com/developers/Android_XMPP_Chat_Sample#Guide:_Getting_Started_with_Chat_API

最佳答案

使用下面的代码会对您有所帮助。

Roster roster = xmppConnection.getRoster();
Collection<RosterEntry> entries = roster.getEntries();
Presence presence;

for(RosterEntry entry : entries) {
presence = roster.getPresence(entry.getUser());

System.out.println(entry.getUser());
System.out.println(presence.getType().name());
System.out.println(presence.getStatus());
}

关于java - Android:如何在quickblox中获取在线或离线用户状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41584370/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com