更改文本视图背景颜色宽度
Change textview background color width
我有一个问题,我可以用这张图片更好地解释:
现在我有了这个:
但我想要这个:
我想让我的 textview 的背景色在屏幕的所有宽度上伸展,但我不知道该怎么做。有人能帮我吗?
谢谢! :)
使用match_parent
作为宽度:
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"/>
我有一个问题,我可以用这张图片更好地解释:
现在我有了这个:
但我想要这个:
我想让我的 textview 的背景色在屏幕的所有宽度上伸展,但我不知道该怎么做。有人能帮我吗?
谢谢! :)
使用match_parent
作为宽度:
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"/>