How to make a page indicator for horizontal recyclerview

前端 未结 10 1277
说谎
说谎 2021-01-30 05:32

Any idea how to create a page indicator for recyclerview list ?

10条回答
  •  渐次进展
    2021-01-30 05:52

    in case of anyone need, I wrote my own library for this (after a lot of searching): RecyclerView indicator. Here's how you do it:

     
    
    
    // In code:
    recyclerView.setAdapter(new TestAdapter());
    recyclerViewIndicator.setRecyclerView(recyclerView);
    

提交回复
热议问题