Recycler view showing single item

后端 未结 6 795
栀梦
栀梦 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条回答
  •  悲&欢浪女
    2020-11-28 08:28

    when you are creating row.xml for recyclerview should follow these things:

    1. Always use "wrap_content" for the height of the row otherwise in "match_parent" it will occupy the whole screen for a single row.

    2. You can also take the height in dp.

提交回复
热议问题