|
@@ -534,7 +534,7 @@ public class TeacherLiveRoomActivity extends BaseMVPActivity<ActivityTeacherLive
|
|
|
mMessageAdapter.setRoomAuthorId(roomInfoBean.speakerId);
|
|
|
}
|
|
|
int peopleCount = roomInfoBean.lookNum;
|
|
|
- mTvNumPeople.setText(peopleCount + "人");
|
|
|
+ mTvNumPeople.setText(String.format("%s人", LiveMemberHelper.getMemberCountText(peopleCount)));
|
|
|
//同步点赞数
|
|
|
currentAddLikeCount = roomInfoBean.likeNum;
|
|
|
updateAddLikeCountView();
|
|
@@ -755,7 +755,7 @@ public class TeacherLiveRoomActivity extends BaseMVPActivity<ActivityTeacherLive
|
|
|
return;
|
|
|
}
|
|
|
if (mTvNumPeople != null) {
|
|
|
- mTvNumPeople.setText(count + "人");
|
|
|
+ mTvNumPeople.setText(String.format("%s人", LiveMemberHelper.getMemberCountText(count)));
|
|
|
}
|
|
|
}
|
|
|
|