Recycler view showing single item

后端 未结 6 805
栀梦
栀梦 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:19

    My mistake was I accidentally used:

    LinearLayoutManager(context, LinearLayoutManager.HORIZONTAL, false)
    

    instead of:

    LinearLayoutManager(context, LinearLayoutManager.VERTICAL, false)
    

提交回复
热议问题