在RecyclerView.onBindViewHolder中处理View的可见性

时间:2015-09-18 09:41:24

标签: android android-recyclerview

我正在制作聊天应用,对于这个应用我正在使用RecyclerView(因为这是有效的ListView)。我在处理View的可见性方面遇到了问题。我的想法是,每当我有新消息时。表示该消息的项目应该在左侧有一些条形。下面是我用于RecyclerView项目的xml布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <View 
        android:id="@+id/vwLeftLine"
        android:layout_width="5dp"
        android:layout_height="fill_parent"
        android:background="@android:color/darker_gray"
        android:layout_alignParentLeft="true" />

    <ImageView
        android:id="@+id/imvwImage"
        android:layout_width="@dimen/dp_size"
        android:layout_toRightOf="@+id/vwLeftLine"
        android:padding="5dp"
        android:layout_height="@dimen/dp_size"
        android:src="@drawable/ic_launcher" />

    <TextView
        android:id="@+id/txtName"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/imvwImage"
        android:layout_toRightOf="@+id/imvwImage"
        android:paddingTop="5dp"
        android:text="Name" />

    <TextView
        android:id="@+id/txtLastMessage"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/imvwImage"
        android:layout_toRightOf="@+id/imvwImage"
        android:paddingBottom="5dp"
        android:text="Last Message" />

以下是我正在使用的适配器:

package com.zai.recylerviewtest;

import java.util.ArrayList;

import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class ItemsAdapter extends RecyclerView.Adapter<ItemHolder>{

    private ArrayList<Item> items;

    public ItemsAdapter(ArrayList<Item> items) {
        this.items = items;
    }

    @Override
    public int getItemCount() {
        return items.size();
    }

    @Override
    public void onBindViewHolder(ItemHolder holder, int position) {
        Item item = items.get(position);

        holder.txtName.setText(item.name);
        holder.txtLastMessage.setText(item.lastMessage);

        holder.vwLeftLine.setVisibility(item.isNewMessage ? View.VISIBLE : View.GONE);
    }


    @Override
    public ItemHolder onCreateViewHolder(ViewGroup group, int type) {
        View v = LayoutInflater.from(group.getContext()).inflate(R.layout.list_items, null); 
        return new ItemHolder(v);
    }

    public static class Item {
        public String name;
        public String lastMessage;
        public boolean isNewMessage;
    }
}

这是ViewHolder

package com.zai.recylerviewtest;

import android.support.v7.widget.RecyclerView.ViewHolder;
import android.view.View;
import android.widget.TextView;

public class ItemHolder extends ViewHolder{

    public View vwLeftLine;
    public TextView txtName;
    public TextView txtLastMessage;

    public ItemHolder(View itemView) {
        super(itemView);

        vwLeftLine = itemView.findViewById(R.id.vwLeftLine);
        txtName = (TextView) itemView.findViewById(R.id.txtName);
        txtLastMessage = (TextView) itemView.findViewById(R.id.txtLastMessage);
    }   
}

现在您可以在适配器中看到,我根据vwLeftLine设置了isNewMessage的可见性。但我得到了这个:

enter image description here

正如您所看到的,包含新消息的行(vwLeftLine具有VISIBLE可见性)比其他行更多,因此vwLeftLine占用空间但不是可见。

提前完成。

提前完成

0 个答案:

没有答案