注册

对于环信的接收消息的这个回调接口 怎么判断消息的类型


public void onMessageReceived(List list) { //收到消息 Toast.makeText(getApplicationContext(), "接收消息", Toast.LENGTH_SHORT).show(); tvText.setText(list.get(list.size()).toString()); }
 
怎么判断message的类型 
已邀请:
message.getChatType() 获取消息类型
message.getChatType()只是获取私聊还是群聊的类型,想要获取消息属于文本还是图片等,使用
message.getType()。
 

要回复问题请先登录注册