Is there an equivalent for iOS UICollectionView in Android SDK?
I need to implement similar "table" layout as below, but as there are many cells (user will scroll the screen to view all) I need cell re-using for performance reasons.
+-----------------+----------+--------+
| cell 1 | cell 2 | cell 3 |
+-----------------+--+-------+--+-----+
| cell 4 | cell 5 | cell 6 |
+---------+---+------+-----+----+---------+
| cell 7 | cell 8 | cell 9 |
+-------------+------------+--------------+
I was thinking to use separate GridView for each row, but I need to scroll all table at once and I am not sure if cell re-using will work properly that way.
What is the best way to implement the table above?