単一アイテムを表示するリサイクラービュー


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 linkを追加しました
Rujul1993 '12

4
設定しようとするwrap_content代わりにmatch_parent、あなたのレイアウトで高さと幅のためgithub.com/revic1993/androidchat/blob/master/app/src/main/res/... github.com/revic1993/androidchat/blob/master/app/src/main / res /…
Slavik

@Slavikありがとうございます!
Rujul1993 1993

回答:


419

match_parentアイテムビューの高さには使用しないでください。1つのアイテムが画面全体に垂直に表示されるため、別のアイテムは表示されません。


43
GoogleはLint警告をいくつか追加してください。今回は、迷惑なLintを活用してください。
ネオンワージ2016

1
ああ、ありがとう、私の場合、match_parentを高さとして項目を作成しました。したがって、すべての画面が最初のアイテムの背後に保持されました。
Naveed Ahmad

7
私はあなたにコーヒーを買おう!あなたは私の正気を救った!ありがとう!
microwth '25年

私にはうまくいきません。すべてのアイテムは、Button前に配置された場合にのみ表示されRecyclerViewます。助言がありますか?
Konstantin Konopko


17

recyclerviewのrow.xmlを作成するときは、次のようにする必要があります。

  1. 行の高さには常に「wrap_content」を使用します。そうでない場合、「match_parent」では、1行の画面全体を占有します。

  2. 高さをdpで取得することもできます。


1
同じ問題をスクロールしてみて、残りのアイテムを見ました
Nixon Kosgei 2017

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の幅match_parentrow_item.xml幅も設定しますmatch_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"

IN row_list.xmlファイルは次の変更を行います

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

実行する上記の変更を行います。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.