I have to create a table of items in an Android Fragment which can exceed both the width and the height, so it would need to be scrolled on both ways. Think of a TV Guide with the hours on the horizontal axis and channels on the vertical axis. Each item in the table is actionable (statelistdrawable containing bitmaps). How would you implement this most efficiently considering:
- There is not default bidirectional scrollview. I added a HorizontalScrollView in a ScrollView and it worked ok although it is reported to cause problems.
- There should be a mechanism to lazy load the views that are not visible (similar to listview adapter behaviour)
Thank you