Android GridView load items vertically

后端 未结 7 1416
离开以前
离开以前 2021-02-05 07:16

Is it possible to load items in GridView with vertical orientation? I mean...

Normal situation - 3 columns

\

7条回答
  •  北恋
    北恋 (楼主)
    2021-02-05 07:42

    If you are using GridLayoutManager with RecyclerView, easy way to fill vertically data first is :

    GridLayoutManager lLayout_artist = new GridLayoutManager(getActivity(),3,GridLayoutManager.HORIZONTAL, false);
    

    You can change orientation of GridLayoutManager as per your requirement.

提交回复
热议问题