Tablelayout Row Strech/shrink
I'm trying to fit a 20x20 table into a view using a programmatically built TableLayout. The setStretchAllColumns/setShrinkAllColumns methods work perfectly for squeezing all the c
Solution 1:
There aren't any setStretchAllColumns/setShrinkAllColumns
for rows in a TableLayout
. One thing that you could try(I haven't tested it) is to give your TableLayout
a weigtSum
of 20
(with the method setWeightSum()
) and then set the weight
(the layout_weight
attribute from a xml layout) of 1
for each of your 20 TableRow
s in the TableLayout
.
Post a Comment for "Tablelayout Row Strech/shrink"