1:修改进入房间后,先获取在线列表

2:修改图片展示,展示圆形图片
3:添加后台禁用后,页面弹起禁用弹框
4:修改日志,不在展示返回结果,不展示域名
This commit is contained in:
2026-01-27 14:36:05 +08:00
parent 8db507718c
commit 8ce7a9e5de
6 changed files with 40 additions and 11 deletions

View File

@@ -257,6 +257,26 @@ public class CommonAppContext extends MultiDexApplication implements Application
}
}
public void clearLoginDialog(String msg){
new ConfirmDialog(ActivityUtils.getTopActivity(),
"提示",
msg,
"",
"确定",
v -> {
// 点击“确认”按钮时执行删除操作
},
v -> {
try {
clearLoginInfo();
} catch (ClassNotFoundException e) {
throw new RuntimeException(e);
}
// 点击“取消”按钮时什么都不做
}, true, 4).show();
}
// 更新未读消息数的方法
private void updateUnreadMessageCount() {
V2TIMManager.getConversationManager().getTotalUnreadMessageCount(new V2TIMValueCallback<Long>() {