I want to develop a simple sudoku app. For the layout, I need to have a 9x9 table/grid for the board, and 12 buttons under it and all this must fit in one screen,i had a couple of ideas but there is a problem in each of them
Using
GridView
and pass a 2d array to the adapter, BUT, the grid is scrollable and the player must see the whole board.Using
TableView
, but its not clickable as the grid.Create 81 button for the board in the xml or programmatically, I think it will be complex.
Is there are any other simpler or more efficient ideas! And if not , which one from the above is better.