Is it possible to make a GridView scroll from left to right instead of top to bottom?
I want a view that works essentially exactly like a GridView but performs this left to right scrolling instead of the usually top to bottom. Maybe there is a way to create the same effect using a different view type?
Any help would be appreciated.
If you want to have exactly the same behaviour of
GridViewwith only the change of scrolling, then my proposal would be to extendGridViewto a customViewGroupand make the required changes. If you just need horizontal scrolling, thenHorizontalScrollViewis perfect for such cases. Hope this helps!