更改textview背景颜色宽度

时间:2015-01-15 10:16:34

标签: java android background textview

我有一个问题,我用这张图片更好地解释:

现在我有了这个:

what I have

但我想要这个:

what I want

我希望我的textview的背景颜色在屏幕的所有宽度上拉伸,但我不知道该怎么做。有人能帮我吗?

谢谢! :)

1 个答案:

答案 0 :(得分:1)

使用match_parent作为宽度:

<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"/>