Android Gridview Column Stretching
I have a GridView that is being used to display a number of rows of digits (see picture). I want each row to begin with a heading that says 'Row n' for the nth row. However, the Te
Solution 1:
As far as I could tell when dealing with the same problem, GridView columns must all be the same width. The only way to make the whole "Row n:" label visible would be to reduce the number of columns, thus making each column wider, otherwise try using a TableView instead.
Solution 2:
Try setting wrapContent as TextView width
Post a Comment for "Android Gridview Column Stretching"