I am building an android UI for spreadsheet (for creating, editing, sorting, etc of nxm array of cells). I am wondering which one of these views (GridView or ListView) I should use?
Some specific requirements:
1) At least 100 rows and 100 columns
2) User interface needs to be fast
3) Ability to set row and column headers
4) Ability to sort columns
5) Ability to filter columns
5) Reordering rows and columns
There has been a similar question, but the answer is not clear
Need to create spreadsheet like control, what should I extend ListView or GridView?