|
|
|
|
@@ -855,8 +855,8 @@ public class LiveRoomViewHolder extends AbsViewHolder implements View.OnClickLis
|
|
|
|
|
ViewClicksAntiShake.clicksAntiShake(wishListLayout, () -> startActivity(new Intent(mContext, ZhuangBanActivity.class).putExtra("url", "")));
|
|
|
|
|
//打招呼消息
|
|
|
|
|
fastMsgRecyclerView = (RecyclerView) findViewById(R.id.room_fast_msg);
|
|
|
|
|
fastMsgRecyclerView.setLayoutManager(new LinearLayoutManager(mContext,LinearLayoutManager.HORIZONTAL,false));
|
|
|
|
|
fastMessageRecyclerViewAdapter=new LiveRoomFastMessageRecyclerViewAdapter(mContext);
|
|
|
|
|
fastMsgRecyclerView.setLayoutManager(new LinearLayoutManager(mContext, LinearLayoutManager.HORIZONTAL, false));
|
|
|
|
|
fastMessageRecyclerViewAdapter = new LiveRoomFastMessageRecyclerViewAdapter(mContext);
|
|
|
|
|
fastMsgRecyclerView.setAdapter(fastMessageRecyclerViewAdapter);
|
|
|
|
|
fastMessageRecyclerViewAdapter.setMessageListener(msg -> {
|
|
|
|
|
//点击的消息发送出去
|
|
|
|
|
@@ -1053,7 +1053,7 @@ public class LiveRoomViewHolder extends AbsViewHolder implements View.OnClickLis
|
|
|
|
|
ImageView wishPic = wish.findViewById(R.id.wish_pic);
|
|
|
|
|
TextView wishIndex = wish.findViewById(R.id.wish_index);
|
|
|
|
|
ImgLoader.display(mContext, wishlist.get(i).getWishlistIcon(), wishPic);
|
|
|
|
|
wishIndex.setText((i + 1) + "/" + wishlist.size());
|
|
|
|
|
wishIndex.setText(wishlist.get(i).getWishlistNumP());
|
|
|
|
|
wishListFlipper.addView(wish);
|
|
|
|
|
}
|
|
|
|
|
wishListFlipper.startFlipping();
|
|
|
|
|
@@ -1415,7 +1415,7 @@ public class LiveRoomViewHolder extends AbsViewHolder implements View.OnClickLis
|
|
|
|
|
|
|
|
|
|
private void setGuardIcon(LiveUserGiftBean guard) {
|
|
|
|
|
if (guard != null) {
|
|
|
|
|
nowGuardUser=guard;
|
|
|
|
|
nowGuardUser = guard;
|
|
|
|
|
ImgLoader.displayAvatar(mContext, guard.getAvatar(), userGuard);
|
|
|
|
|
gift_svga.setVisibility(View.VISIBLE);
|
|
|
|
|
}
|
|
|
|
|
@@ -1494,7 +1494,7 @@ public class LiveRoomViewHolder extends AbsViewHolder implements View.OnClickLis
|
|
|
|
|
} else if (i == R.id.ft_hot_add) {
|
|
|
|
|
((LiveActivity) mContext).openHotListWindow(1);
|
|
|
|
|
} else if (i == R.id.user_guard) {
|
|
|
|
|
// ((LiveActivity) mContext).openUserMoreListWindow(2, true);
|
|
|
|
|
// ((LiveActivity) mContext).openUserMoreListWindow(2, true);
|
|
|
|
|
((LiveActivity) mContext).openGuardListWindow();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -1775,7 +1775,7 @@ public class LiveRoomViewHolder extends AbsViewHolder implements View.OnClickLis
|
|
|
|
|
}
|
|
|
|
|
room_hot.setText(formatBigNum.formatBigNum(bean.getLiveChatBean().getHot_num()));
|
|
|
|
|
LiveUserGiftBean chatBean = bean.getUserBean();
|
|
|
|
|
if(chatBean!=null&&nowGuardUser!=null) {
|
|
|
|
|
if (chatBean != null && nowGuardUser != null) {
|
|
|
|
|
LiveUserGiftBean tmp = null;
|
|
|
|
|
if (chatBean.getGuardType() != 0 && chatBean.getGuardType() > nowGuardUser.getGuardType()) {
|
|
|
|
|
tmp = chatBean;
|
|
|
|
|
@@ -1788,10 +1788,11 @@ public class LiveRoomViewHolder extends AbsViewHolder implements View.OnClickLis
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 用户离开房间
|
|
|
|
|
*
|
|
|
|
|
* @param bean 用户
|
|
|
|
|
*/
|
|
|
|
|
public void onExitRoom(UserBean bean){
|
|
|
|
|
// getGuardInfo();
|
|
|
|
|
public void onExitRoom(UserBean bean) {
|
|
|
|
|
// getGuardInfo();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|