我面临一个奇怪的错误,其中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布局文件的链接: layout files
答案 0 :(得分:348)
不要将match_parent
用于物品视图的高度。一个项目垂直填满整个屏幕,因此您看不到另一个。
答案 1 :(得分:16)
当您为recyclerview创建row.xml时,应遵循以下内容:
始终使用“wrap_content”作为行的高度,否则在“match_parent”中它将占据整行的单行行。
您也可以在dp中获取高度。
答案 2 :(得分:3)
我的错误是我不小心使用了:
LinearLayoutManager(context, LinearLayoutManager.HORIZONTAL, false)
代替:
LinearLayoutManager(context, LinearLayoutManager.VERTICAL, false)
答案 3 :(得分: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>
答案 4 :(得分:0)
1)如果您的recyclerview是垂直的,那么设置recyclerview match_parent
和row_item.xml
身高的高度match_parent
2)如果您的recyclerview是水平的,则设置recyclelerview match_parent
和row_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" />
答案 5 :(得分: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"
我对其运行进行了以上更改。
答案 6 :(得分:0)
检查日志后,确保列表中添加了多个项目,但在 UI 中仅显示 1 个项目意味着检查此属性。 在 item_xml 文件中将属性更改为
正确的方法
android:layout_width="match_parent"
android:layout_height="wrap_content"
错误的方法
android:layout_width="match_parent"
android:layout_height="match_parent"