你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
[已注销]
List<Pair<Long, EMConversation>> sortList = new ArrayList<Pair<Long, EMConversation>>(); synchronized (conversations) { for (EMConversation conversation : conversations.values()) { if (conversation.getAllMessages().size() != 0) { //if(conversation.getType() != EMConversationType.ChatRoom){ sortList.add(new Pair<Long, EMConversation>(conversation.getLastMessage().getMsgTime(), conversation)); //} } } }
对空会话 做了过滤的。
要回复问题请先登录或注册
1 个回复
[已注销]
EaseConversationListFragment这个类中的
loadConversationList这个方法中,在代码层的