去掉联系人列表等级展示

This commit is contained in:
huangjian
2023-02-09 18:18:05 +08:00
parent 05f0153159
commit 39b7efd70e

View File

@@ -143,15 +143,6 @@ public class CommonRecentViewHolder extends RecentViewHolder {
.getUserInfo(Long.parseLong(contactId)) .getUserInfo(Long.parseLong(contactId))
.subscribe(userInfo -> { .subscribe(userInfo -> {
if (userInfo.getUid() != Long.parseLong(contactId)) return; if (userInfo.getUid() != Long.parseLong(contactId)) return;
UserLevelVo userLevelVo = userInfo.getUserLevelVo();
if (userLevelVo != null && !TextUtils.isEmpty(userLevelVo.getExperUrl())) {
mIvNobleLevel.setVisibility(VISIBLE);
ImageLoadUtils.loadImage(mIvNobleLevel.getContext(), userLevelVo.getExperUrl(), mIvNobleLevel);
}
if (userLevelVo != null && !TextUtils.isEmpty(userLevelVo.getCharmUrl())) {
ivCharmLevel.setVisibility(VISIBLE);
ImageLoadUtils.loadImage(ivCharmLevel.getContext(), userLevelVo.getCharmUrl(), ivCharmLevel);
}
ivUserGender.setVisibility(VISIBLE); ivUserGender.setVisibility(VISIBLE);
ivVipIcon.setVisibility(VISIBLE); ivVipIcon.setVisibility(VISIBLE);
if (userInfo.getGender() == 1) { if (userInfo.getGender() == 1) {