Merge Rows And Columns In Android Gridview
I am doing an image viewing page in android.I need to merge rows in some places and merge columns in some places.Can we do it in gridview. If we select any merged image the total i
Solution 1:
Try AsymmetricGridView. I wrote it myself :)
Solution 2:
Can we do it in gridview
No, sorry, GridView
does not really support row or column spans. GridLayout
does, though, and TableLayout
/TableRow
supports column spans.
You might also look at the open source StaggeredGridView
.
Post a Comment for "Merge Rows And Columns In Android Gridview"