Android Horizontal RecyclerView scroll Direction

前端 未结 12 2211
忘掉有多难
忘掉有多难 2020-12-12 16:26

I made a Horizontal RecyclerView and it works fine(thanks to this) but the direction of scroll and data are expand from left to right; then How can I change the RecyclerView

12条回答
  •  忘掉有多难
    2020-12-12 16:52

    In Recycler Layout manager the second parameter is spanCount increase or decrease in span count will change number of elements show on your screen

        RecyclerView.LayoutManager mLayoutManager = new GridLayoutManager(this, 2, //The number of Columns in the grid
    ,GridLayoutManager.HORIZONTAL,false);
                    recyclerView.setLayoutManager(mLayoutManager);
    

提交回复
热议问题