Android Horizontal RecyclerView scroll Direction

前端 未结 12 2165
忘掉有多难
忘掉有多难 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:56

    This following code is enough

    RecyclerView recyclerView;
    LinearLayoutManager layoutManager = new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL,true);
    
     recyclerView.setLayoutManager(layoutManager);
    

提交回复
热议问题