png
png

Reputation: 4408

can grid view have column spanning one or more rows

Is it possible to have a grid view with 2 columns and 3 rows with a condition cell1 (row1,col1) spans to row2,col2 as well. ie there is no cell (row2,col1) and the cell (row1,col1) occupy its space as well

Upvotes: 1

Views: 3261

Answers (1)

Lukas Knuth
Lukas Knuth

Reputation: 25755

A GridView does not support spanning. A TableLayout however does. See this older topic: Android - GridView : Specify Column Span

Upvotes: 2

Related Questions