Add Items to top of recyclerview

后端 未结 9 2078
臣服心动
臣服心动 2021-01-04 04:56

I have a Recyclerview in my activity. when I pull down it will load new items to recycle view. Now I need to implement pull to refresh the concept to my recyclerview. I have

9条回答
  •  星月不相逢
    2021-01-04 05:39

    Add following line when you set your recyclerview

    recyclerView.setLayoutManager(new LinearLayoutManager(context,LinearLayoutManager.VERTICAL,true));
    

提交回复
热议问题