I want to represent a DataBase
output to a GridView
, the deal is that I want this GridView
scroll horizontally and vertically. The reason for that is that I may have a table that has a number of columns that will not fit on screen, So Horizontal scrolling is necessary.
Now for vertical scrolling: I may have a big DataBase
(with 100 entries and more...) So I do want it to scroll vertically as well and use the View
recycling mechanism to populate the GridView
(for the Vertical Scrolling, no View recycling is needed for the Horizontal Scrolling).
I have already stumbled on this solution: https://gist.github.com/codeswimmer/869685
But I have few problems with this:
1. It uses a deprecate Gallary
View
.
2. I think this changes the vertical scrolling to a horizontal one but doesn't allow both of them.
Is this even possible? Any direction on this topic would be really appreciated.