단일 항목을 보여주는 Recycler보기


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


@Slavik 감사합니다!
Rujul1993

답변:


419

match_parent항목보기의 높이에 사용하지 마십시오 . 한 항목은 전체 화면을 세로로 채우므로 다른 항목은 표시되지 않습니다.


43
Google은 Lint 경고를 추가하고 이번에는 성가신 Lint를 유용하게 만드십시오!
Neon Warge

1
오 감사합니다, 굉장한 사람, 제 경우에는 높이가 match_parent 인 항목을 만들었습니다. 따라서 모든 화면이 첫 번째 항목 뒤에 유지되었습니다.
Naveed 아마드

7
내가 당신에게 cofee를 사줄 게요! 당신은 내 정신을 구했습니다! 고맙습니다!
microwth

나를 위해 작동하지 않습니다. 모든 항목은 Button앞에 배치 된 경우에만 표시됩니다 RecyclerView. 어떤 제안?
Konstantin Konopko


17

recyclerview에 대한 row.xml을 만들 때 다음 사항을 따라야합니다.

  1. 행 높이에 항상 "wrap_content"를 사용하십시오. 그렇지 않으면 "match_parent"에서 단일 행에 대한 전체 화면을 차지합니다.

  2. dp 단위로 높이를 취할 수도 있습니다.


1
저도 같은 문제가 스크롤을 시도했고, 나머지 항목 보았다
닉슨 코스 게이

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.