回收站视图显示单个项目


124

我遇到一个奇怪的错误,其中recyclerview仅显示一个项目。以下是我的recyclerview适配器的代码:

public class ChatAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> {


List<chat> chats;
String username;
final int My=0,Their=1;

public ChatAdapter(List<chat> chats) {
    this.chats = chats;
    this.username = PushApp.getApp().getSPF().getStringData(Constants.ANAME);
}


@Override
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
    RecyclerView.ViewHolder viewHolder;
    LayoutInflater inflater = LayoutInflater.from(parent.getContext());

    switch (viewType) {
        case My:
            View v1 = inflater.inflate(R.layout.my_chat_child, parent, false);
            viewHolder = new MyChatHolder(v1);
            break;
        case Their:
            View v2 = inflater.inflate(R.layout.their_chat_child, parent, false);
            viewHolder = new TheirMessageHolder(v2);
            break;
        default:
            View v = inflater.inflate(R.layout.my_chat_child, parent, false);
            viewHolder = new MyChatHolder(v);
            break;
    }

    return viewHolder;

}

@Override
public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
    switch (holder.getItemViewType()) {
        case My:
            MyChatHolder myChatHolder = (MyChatHolder) holder;
            myChatHolder.setMyMessage(chats.get(position).getMessage());
            break;

        case Their:
            TheirMessageHolder theirMessageHolder = (TheirMessageHolder) holder;
            theirMessageHolder.setTheirChat(chats.get(position).getFrom(), chats.get(position).getMessage());
            break;
    }
}

@Override
public int getItemViewType(int position) {
    if(username.equalsIgnoreCase(chats.get(position).getFrom()))
        return My;
    return Their;
}

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

我已经在其他应用程序中使用了此代码,并且可以正常工作。我检查了聊天数据,这也是完美的。

这是git repo布局文件的链接: 布局文件


@OShiffer我添加了git repo链接
Rujul1993 '16


@Slavik谢谢!
Rujul1993 '16

Answers:


419

不要match_parent为项目视图使用高度。一项垂直填充整个屏幕,因此您看不到另一项。


43
Google请添加一些Lint警告,这次让您烦人的Lint有用!
霓虹灯Warge

1
哦,谢谢,太好了,在我的情况下,我创建了一个高度为match_parent的商品。因此,所有屏幕均保留在第一项的后面。
Naveed Ahmad

7
让我给你买一杯咖啡!你刚刚救了我的理智!谢谢!
microwth

对我不起作用。所有项目仅在Button放在之前显示RecyclerView。有什么建议?
康斯坦丁·科诺普科


17

在为recyclerview创建row.xml时,应遵循以下步骤:

  1. 始终使用“ wrap_content”作为行的高度,否则在“ match_parent”中它将占据整个屏幕的一行。

  2. 您也可以以dp表示高度。


1
我遇到了相同的问题,尝试滚动并看到了其余项目
Nixon Kosgei

1

尝试将项目视图中使用的布局更改为FrameLayout。这是一个例子。

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/item"
    android:layout_width="match_parent"
    android:layout_height="?listPreferredItemHeight"
    android:clickable="true"
    android:focusable="true"
    android:foreground="?selectableItemBackground">

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:layout_marginEnd="8dp"
        android:layout_marginBottom="8dp"/>
</FrameLayout>

1

我的错误是我习惯使用的:

LinearLayoutManager(context, LinearLayoutManager.HORIZONTAL, false)

代替:

LinearLayoutManager(context, LinearLayoutManager.VERTICAL, false)

0

1)如果您的recyclerview是垂直的,则还要设置recyclerview的高度match_parentrow_item.xml高度match_parent

2)如果您的recyclerview是水平的,则还要设置recyclerview的Width match_parentrow_item.xmlWidthmatch_parent

例如:-水平RecyclerView

<android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="60dp"
        android:layout_marginRight="60dp" />

row_item.xml

<TextView
android:layout_width="match_parent"
android:layout_height="180dp"
android:layout_marginBottom="5dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="5dp"
android:background="@drawable/rect"
android:gravity="center"
android:maxLines="2"
android:padding="10dp"
android:textColor="@color/white"
android:textSize="25sp" />

0

content_main.xml如下

android:layout_width="match_parent"
android:layout_height="match_parent"

在row_list.xml文件中进行以下更改

android:layout_width="match_parent"
android:layout_height="wrap_content"

我对运行进行了以上更改。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.