周星榜数量修改
This commit is contained in:
parent
4f44278561
commit
76d24123a7
@ -116,6 +116,33 @@ public class EnterRoomInfoModel extends BaseModel {
|
|||||||
@SerializedName("connection_info")
|
@SerializedName("connection_info")
|
||||||
private LivePkMicModel connectionInfo;
|
private LivePkMicModel connectionInfo;
|
||||||
|
|
||||||
|
@SerializedName("week_star_gift_num")
|
||||||
|
private String weekStarGiftNum;
|
||||||
|
|
||||||
|
@SerializedName("week_gift_illuminate_num")
|
||||||
|
private String weekGiftIlluminateNum;
|
||||||
|
|
||||||
|
// 对应的getter和setter方法
|
||||||
|
public String getWeekStarGiftNum() {
|
||||||
|
return weekStarGiftNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWeekStarGiftNum(String weekStarGiftNum) {
|
||||||
|
this.weekStarGiftNum = weekStarGiftNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getWeekGiftIlluminateNum() {
|
||||||
|
return weekGiftIlluminateNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWeekGiftIlluminateNum(String weekGiftIlluminateNum) {
|
||||||
|
this.weekGiftIlluminateNum = weekGiftIlluminateNum;
|
||||||
|
}
|
||||||
|
//
|
||||||
|
// "week_star_gift_num": 0,
|
||||||
|
// "week_gift_illuminate_num": 0
|
||||||
|
|
||||||
|
|
||||||
@SerializedName("is_first_entry")
|
@SerializedName("is_first_entry")
|
||||||
private String isFirstEntry;
|
private String isFirstEntry;
|
||||||
@SerializedName("is_new_user")
|
@SerializedName("is_new_user")
|
||||||
|
@ -2800,7 +2800,7 @@ public class LiveRoomViewHolder extends AbsViewHolder implements View.OnClickLis
|
|||||||
}
|
}
|
||||||
|
|
||||||
//是否是主播
|
//是否是主播
|
||||||
private boolean isAnchorLive() {
|
public boolean isAnchorLive() {
|
||||||
return mContext instanceof LiveRyAnchorActivity || mContext instanceof LiveSwAnchorActivity;
|
return mContext instanceof LiveRyAnchorActivity || mContext instanceof LiveSwAnchorActivity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -864,7 +864,12 @@ public class PortraitLiveManager implements LivePlayListener, SocketMessageListe
|
|||||||
//红包相关
|
//红包相关
|
||||||
mLiveRoomViewHolder.setRedPackBtnVisible(Integer.parseInt(data.getEnterRoomInfo().getIsred()) == 1);
|
mLiveRoomViewHolder.setRedPackBtnVisible(Integer.parseInt(data.getEnterRoomInfo().getIsred()) == 1);
|
||||||
//礼物墙相关
|
//礼物墙相关
|
||||||
mLiveRoomViewHolder.setGiftWall(data.getEnterRoomInfo().getGiftWallLightenNumber(), data.getEnterRoomInfo().getGiftWallLightenTotal());
|
if(mLiveRoomViewHolder.isAnchorLive()){
|
||||||
|
mLiveRoomViewHolder.setGiftWall(data.getEnterRoomInfo().getGiftWallLightenNumber(), data.getEnterRoomInfo().getGiftWallLightenTotal());
|
||||||
|
}else {
|
||||||
|
mLiveRoomViewHolder.setGiftWall(data.getEnterRoomInfo().getWeekStarGiftNum(), data.getEnterRoomInfo().getWeekGiftIlluminateNum());
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//奖池等级
|
//奖池等级
|
||||||
|
@ -107,7 +107,7 @@ public class MainMeViewHolder extends AbsMainViewHolder implements OnItemClickLi
|
|||||||
private TextView btnCopy;
|
private TextView btnCopy;
|
||||||
private SVGAImageView gift_svga;
|
private SVGAImageView gift_svga;
|
||||||
private View v_noble;
|
private View v_noble;
|
||||||
private FrameLayout lt_noble;
|
private View lt_noble;
|
||||||
// private LinearLayout btnUserNoble;
|
// private LinearLayout btnUserNoble;
|
||||||
private ImageView user_noble_ico, good_nub_ico, img_lv_pic;
|
private ImageView user_noble_ico, good_nub_ico, img_lv_pic;
|
||||||
private TextView user_noble_text, user_noble_time, tv_setting;
|
private TextView user_noble_text, user_noble_time, tv_setting;
|
||||||
@ -165,7 +165,7 @@ public class MainMeViewHolder extends AbsMainViewHolder implements OnItemClickLi
|
|||||||
user_noble_text = (TextView) findViewById(R.id.user_noble_text);
|
user_noble_text = (TextView) findViewById(R.id.user_noble_text);
|
||||||
img_setting = (ImageView) findViewById(R.id.img_setting);
|
img_setting = (ImageView) findViewById(R.id.img_setting);
|
||||||
v_noble = (View) findViewById(R.id.v_noble);
|
v_noble = (View) findViewById(R.id.v_noble);
|
||||||
lt_noble = (FrameLayout) findViewById(R.id.lt_noble);
|
lt_noble = findViewById(R.id.lt_noble);
|
||||||
user_noble_time = (TextView) findViewById(R.id.user_noble_time);
|
user_noble_time = (TextView) findViewById(R.id.user_noble_time);
|
||||||
banner_me = (Banner) findViewById(R.id.banner_me);
|
banner_me = (Banner) findViewById(R.id.banner_me);
|
||||||
lt_advertisement = (LinearLayout) findViewById(R.id.lt_advertisement);
|
lt_advertisement = (LinearLayout) findViewById(R.id.lt_advertisement);
|
||||||
|
@ -541,18 +541,17 @@
|
|||||||
|
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
|
||||||
app:layout_constraintStart_toStartOf="@+id/user_noble_text"
|
|
||||||
android:id="@+id/user_noble_time"
|
android:id="@+id/user_noble_time"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_marginBottom="2dp"
|
|
||||||
android:layout_marginEnd="6dp"
|
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginEnd="6dp"
|
||||||
android:layout_marginTop="12dp"
|
android:layout_marginTop="12dp"
|
||||||
android:text="@string/open_noble_text"
|
android:text="@string/open_noble_text"
|
||||||
android:textColor="#000000"
|
android:textColor="#000000"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="@+id/user_noble_text"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/user_noble_text" />
|
||||||
|
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user