Is it possible to load items in GridView with vertical orientation? I mean...
Normal situation - 3 columns
-----------------------------
1 | 2 | 3
-----------------------------
4 | 5 | 6
Desired situation - 3 columns
-----------------------------
1 | 3 | 5
-----------------------------
2 | 4 | 6
Thanks in advance!
I don't think this is possible at all.
Reason ::
I did some work on this and came to this conclusion.Hope this make unanswered question answered.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With