我有一个带有单行的简单 TextView。我想将高度设置为 match_parent/fill_parent,但 Android 的行为只是 wrap_content。
有没有办法强制 TextView 占据所有高度?
Tkx
编辑 :
这就是我得到的:
和我的布局:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/date"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"
android:paddingLeft="13dp"
android:paddingRight="3dp"
android:textColor="@android:color/white"
android:textStyle="bold" />
[...]
</RelativeLayout>