How to set a fixed number of rows in android gridView?

Ann picture Ann · Jan 5, 2013 · Viewed 49.7k times · Source

I am trying to create one gridView in android which have 10 rows and 10 columns.How can I set a fixed number of rows in Gridview ?

Answer

devunwired picture devunwired · Jan 5, 2013

GridView is not really designed for this purpose, it is designed to display an indefinite amount of data in an efficient scrolling manner. If you want to create a static layout where you can discretely place items at specific locations, you should be looking at GridLayout or TableLayout instead.