feat:调整首页房间列表公告标题字段

This commit is contained in:
max
2024-04-15 10:28:19 +08:00
parent 18904e853e
commit 408afcebcb
2 changed files with 2 additions and 1 deletions

View File

@@ -22,7 +22,7 @@ class HomeHotAdapter :
getView<ImageView>(R.id.iv_room_image).load(item.avatar)
setText(R.id.tv_online_number, item.onlineNum.toString())
setText(R.id.tv_room_title, item.title)
setText(R.id.tv_desc, item.roomDesc)
setText(R.id.tv_desc, item.introduction)
}
val avatars: Array<ImageView> = arrayOf(

View File

@@ -51,6 +51,7 @@ public class HomeRoomInfo implements MultiItemEntity, Serializable {
private boolean needOpenSelfRoom;
private int isWeekTop1;
private int isHourTop1;
private String introduction;
@Override
public int getItemType() {