How To Make Columns In Table Layout Spread Evenly Making Maximum Use Of Space Available
I was just trying out with table layout to display some data.... The data is a 3 column data and i want that the columns should utilize the whole width available. But it seems that
Solution 1:
You can try adding android:stretchColumns="0,1,2"
to your <TableLayout>
element.
Post a Comment for "How To Make Columns In Table Layout Spread Evenly Making Maximum Use Of Space Available"