Android table background color
To simulate a grid, I have a tablelayout with background #ffffff
, tablerow with background #000000
and textviews with backgroun开发者_如何学Pythond #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?
If i understand correctly...you can use
android:gravity="center"
on the TextView to center the text in the view.
精彩评论