Recycler view showing single item

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

    1) if your recyclerview is vertical then set height of recyclerview match_parent and row_item.xml height also match_parent

    2) if your recyclerview is horizontal then set Width of recyclerview match_parent and row_item.xml Width also match_parent

    for ex:- Horizontal RecyclerView

    
    

    row_item.xml

    
    

提交回复
热议问题