Recycler view showing single item

后端 未结 6 787
栀梦
栀梦 2020-11-28 07:34

I am facing a strange error where recyclerview is showing only a single item. Below is code for my recyclerview adapter :

public class ChatAdapter extends Re         


        
6条回答
  •  -上瘾入骨i
    2020-11-28 08:11

    content_main.xml as follows

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

    IN row_list.xml file make following changes

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

    I make above changes it runs.

提交回复
热议问题