基于easeui的聊天功能修改头像

参考http://www.jianshu.com/p/3659544e0ed5

找了好几篇文章,终于找到一个比较容易看得懂的。

基于easeui的聊天功能,修改会话列表和会话界面中,用户id对应的用户头像。

根据userid做http请求,后台返回“头像uri”,SharedPreferences保存avatar-“用户id”。

会话列表:EaseConversationAdapter中EaseUserUtils.setUserAvatar(getContext(), username, holder.avatar);这行注释,SharedPreferences取出avatar中“用户id”对应的“头像uri”。Glide.with(getContext()).load(“头像uri”).into(holder.avatar);

会话界面:EaseChatRow中setUpBaseView,和会话列表差不多修改一下就好了

随手笔记,侵权通知我删除

你可能感兴趣的:(基于easeui的聊天功能修改头像)