直播间的滚动修复直播间聊天问题,侧边栏改为fragment

This commit is contained in:
18401019693
2022-08-22 18:11:00 +08:00
parent 318a3dcf8c
commit 6250e1d012
12 changed files with 419 additions and 205 deletions

View File

@@ -6,6 +6,16 @@ import com.yunbao.common.bean.BaseModel;
public class LiveAudienceEvent extends BaseModel {
private LiveAudienceType type;
private ActiveModel model = new ActiveModel();
private String avatar = "";
public String getAvatar() {
return avatar;
}
public LiveAudienceEvent setAvatar(String avatar) {
this.avatar = avatar;
return this;
}
public ActiveModel getModel() {
return model;
@@ -36,7 +46,7 @@ public class LiveAudienceEvent extends BaseModel {
NOBLE(8, "贵族"),
LIAN_MAI(9, "连麦"),
EFFECTS_SETTINGS(10, "特效設置"),
WISH_LIST(11,"心愿单");
WISH_LIST(11, "心愿单");
private int type;