How to create a Data Grid for Android?
android, datagrid
Solution
If you have some determined number of rows and columns and that number is not big, when you might be ok with TableLayout - just create it in the loop or by portions with some delay. Otherwise (if required number of rows/columns is not clear or you need some specific scrolling) custom control would be needed.
Problem
My app has to display data in a 2D grid.The grid can have multiple rows and columns (10 by 10 or 100 by 44). And the grid must display the column and row names. Basically I want something like the DataGridView from Windows Form and WPF. Please provide help. Thank you.