Reputation: 13839
To simulate a grid, I have a tablelayout with background #ffffff
, tablerow with background #000000
and textviews with background #dcdcdc
.
The entire cell is colored #dcdcdc when the textview has width and height set in fill_parent, but when I add the attribute layout_gravity=center
, the width fill_parent attribute is discarded. How can I center the text keeping the whole cell with the expected color?
Upvotes: 0
Views: 822
Reputation: 73484
If i understand correctly...you can use
android:gravity="center"
on the TextView to center the text in the view.
Upvotes: 1