Is it possible to load items in GridView with vertical orientation? I mean...
Normal situation - 3 columns
Please clarify, say you have a Grid like this
1 4 7
2 5 8
3 6 9
now if you scroll it down vertically, it should basically be like this??
2 5 8
3 6 9
4 7 10
In this case,
Clearly, this is not how a normal ListView/GridView works where a row is recycled at a time, AFAIK you will need to customise GridView to get this functionality.