关注消息修改

This commit is contained in:
18401019693
2023-04-10 10:45:07 +08:00
parent 508f1a52ae
commit 917d237b6d
4 changed files with 20 additions and 13 deletions

View File

@@ -182,12 +182,12 @@ public class LiveChatAdapter extends RecyclerView.Adapter {
class Vh extends RecyclerView.ViewHolder {
LinearLayout mBg, view_follow, view_action_game, view_zg, xydComplete;
TextView mTextView, tv_chat_active_into, tv_chat_avtive_name, tv_zg_anchorname, textTxt2;
TextView mTextView, tv_chat_active_into, tv_chat_avtive_name, tv_zg_anchorname, textTxt2,automatic_chat;
RoundedImageView avatar;
View v_chat_active_close;
RecyclerView rv_chat_active;
ImageView img_zg_img, btnAttention, textLeave;
FrameLayout attentionLayout;
LinearLayout attentionLayout;
ClipPathCircleImage clipImage2;
public Vh(View itemView) {
@@ -195,7 +195,7 @@ public class LiveChatAdapter extends RecyclerView.Adapter {
mBg = (LinearLayout) itemView.findViewById(R.id.bg);
mTextView = (TextView) itemView.findViewById(R.id.text_txt);
textTxt2 = (TextView) itemView.findViewById(R.id.text_txt2);
attentionLayout = (FrameLayout) itemView.findViewById(R.id.attention_layout);
attentionLayout = (LinearLayout) itemView.findViewById(R.id.attention_layout);
clipImage2 = (ClipPathCircleImage) itemView.findViewById(R.id.clip_image2);
itemView.setOnClickListener(mOnClickListener);
@@ -211,6 +211,7 @@ public class LiveChatAdapter extends RecyclerView.Adapter {
view_zg = (LinearLayout) itemView.findViewById(R.id.view_zg);
xydComplete = (LinearLayout) itemView.findViewById(R.id.xyd_complete);
tv_zg_anchorname = (TextView) itemView.findViewById(R.id.tv_zg_anchorname);
automatic_chat = (TextView) itemView.findViewById(R.id.automatic_chat);
img_zg_img = (ImageView) itemView.findViewById(R.id.img_zg_img);
btnAttention = (ImageView) itemView.findViewById(R.id.btn_attention);
textLeave = (ImageView) itemView.findViewById(R.id.text_leave);