我正在开发一个聊天应用程序,我可以在其中发送消息,图像,视频等 我已经在一对一的聊天中完成了这个,也在群聊中完成了。 但问题是: - 我必须每次登录时都加入每个小组,否则我无法接收来自不同小组的消息。
这是我每次加入小组的方式。
MultiUserChat muc= new MultiUserChat(mConnection,"hsjsmqb@conference.11.111.111.111");
String userNAme ="222222222";
muc.join(userNAme);
如果我每次都不加入小组我都不接收消息。 如果我加入小组我开始接收消息。
我的问题是这是唯一的解决方案或所有群聊这种方式。 或者我做错了什么 我用谷歌搜索,但没有找到任何解决方案。 如果是重复的问题或与我的问题相关的任何答案,请分享链接 感谢
这是代码: -
public boolean createChatRoom() {
String name = edtGroupName.getText().toString();
if (!(connection.isConnected() && name.length() != 0)) {
return false;
}
try {
// Create a MultiUserChat
String userName = Utils.covertIntoSubString(connection.getUser(), Constant.AT);
roomName = (name + md5String(getDateTime()) + userName + Constant.CONFERENCE + connection.getServiceName()).replaceAll(" ", "");
MultiUserChat muc = new MultiUserChat(connection, roomName);
// Create a chat room
muc.create(roomName);
// set Room Name as room subject
muc.changeSubject(name);// RoomName room name
// To obtain the chat room configuration form
Form form = muc.getConfigurationForm();
// Create a new form to submit the original form according to the.
Form submitForm = form.createAnswerForm();
// To submit the form to add a default reply
for (Iterator<FormField> fields = form.getFields(); fields
.hasNext(); ) {
FormField field = (FormField) fields.next();
if (!FormField.TYPE_HIDDEN.equals(field.getType())
&& field.getVariable() != null) {
// Set default values for an answer
submitForm.setDefaultAnswer(field.getVariable());
}
}
// Set the chat room of the new owner
List<String> owners = new ArrayList<String>();
owners.add(connection.getUser());// The user JID
// submitForm.setAnswer("muc#roomconfig_roomowners", owners);
// Set the chat room is a long chat room, soon to be preserved
submitForm.setAnswer("muc#roomconfig_persistentroom", true);
// chat room is public
submitForm.setAnswer("muc#roomconfig_publicroom", true);
// Allows the user to modify the nickname
submitForm.setAnswer("x-muc#roomconfig_canchangenick", true);
// Allows the possessor to invite others
// submitForm.setAnswer("muc#roomconfig_allowinvites", true);
// submitForm.setAnswer("muc#roomconfig_enablelogging", true);
// Only allow registered nickname log
// submitForm.setAnswer("x-muc#roomconfig_reservednick", true);
// Allows the user to register the room
// submitForm.setAnswer("x-muc#roomconfig_registration", true);
muc.sendConfigurationForm(submitForm);
} catch (Exception e) {
e.printStackTrace();
return false;
}
return true;
}
public void inviteFriends(String userJid) {
try {
String groupName = edtGroupName.getText().toString();
Message msg = new Message();
msg.setBody(groupName);
MultiUserChat muc = new MultiUserChat(connection, roomName);
if (muc != null) {
muc.grantMembership(userJid);
muc.invite(msg, userJid, groupName);
}
} catch (Exception ex) {
ex.printStackTrace();
}
}
public void invitationrecvd(){
MultiUserChat chatRoom = new MultiUserChat(con, rum);
try {
chatRoom.join(userName);
saveGroupsToDb(userName + Constant.AT + Constant.HOST + Constant.SLASHSMACK, rum, group);
} catch (Exception e) {
e.printStackTrace();
}
}
这是主屏幕上的群组留言听众
PacketFilter filter = new MessageTypeFilter(Message.Type.groupchat);
groupMessagesListeners = new GroupMessagesListeners();
mConnection.addPacketListener(groupMessagesListeners,filter);
答案 0 :(得分:1)
群聊被发送到XMPP muc(多用户聊天),因此您需要加入muc才能接收在该特定群组中发送的消息。您可以在https://xmpp.org/extensions/xep-0045.html中详细了解相关信息。
以下是该链接的摘录:
7.2.1群聊1.0协议
为了参与多用户聊天中的讨论 房间,用户必须首先进入房间成为一个占用者。在 旧的groupchat 1.0协议,这是通过发送存在来完成的 没有&#39;类型&#39;属于,在哪里&#34;房间&#34;是房间 ID,&#34;服务&#34;是聊天服务的主机名,&#34; nick&#34;是个 用户在房间内所需的昵称:
答案 1 :(得分:0)
或多或少我已经回答了这种答案,但你的代码更清晰(Can't able to receive group chat messages using smack-android:4.1.4)。
1)当你创建一个多用户聊天时,要完成它,你必须加入这个聊天或它刚刚配置但仍未激活的房间。
muc.sendConfigurationForm(submitForm);
muc.join("My Nickname","password"); //omit password if not needed
2)要自动加入您的群聊,您可以使用 PubSub 功能 Smack的片段看起来像:
BookmarkManager bookmarkManager = BookmarkManager.getBookmarkManager(mConnection);
bookmarkManager.addBookmarkedConference
("My roomname label",
roomName,
true,
"My Nickname",
password);
在以下时间添加此代码:
(要删除书签,只需:
this.bookmarkManager.removeBookmarkedConference(roomName)
)
最后,登录后,添加一个方法来自动加入群聊:
List<BookmarkedConference> list = BookmarkManager.getBookmarkManager(mConnection).getBookmarkedConferences();
MultiUserChat muc;
for (BookmarkedConference conference : list)
{
System.out.println("- Conference with bookmark: " + conference.getName() +
" and jid: " + conference.getJid());
if ( (muc = multiUserChatManager.getMultiUserChat(conference.getJid()) ) != null
&& conference.isAutoJoin())
{
muc.join("My Nickname");
//foo
}
}
在此之后,您需要配置和管理您的群聊。我个人不喜欢添加mConnection
一个通用的PacketListener
,因为后续的同步消息与前端同步,但这最终会成为另一个分支。