What would be better for presenting a results table within an Android application where all the columns and rows have uniform size. A table view, or a list view with an custom list view adapter?
What would be better for presenting a results table within an Android application where
Share
What kind of data? How much data?
A list view is a far more complicated view, but it allows you to show datasets that are infinitely large (millions and millions is ok). A table view is much simpler, but if you try to use one to display even a moderate number of rows you will start to run into memory issues, depending on how complex the data in each row is.