我有一个带有singleLine的简单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>
答案 0 :(得分:0)
对于TextView
父级宽度,您可以使用wrap_content
。
答案 1 :(得分:0)
您可以将 TextView 高度设置为 match_parent / fill_parent 。并根据您的要求更改 TextView 的重力和所有其他属性。
如果这对你来说不够,请告诉我你想要做什么。
修改强>
根据您新编辑的代码,我处理了您的代码。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="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:textStyle="bold"
android:textColor="#ffffff"
android:text="dateText"/>
</RelativeLayout>
现在它在整个屏幕的 central_vertical 位置显示 TextView 。
试试这段代码。它的工作。像我一样更改 RelativeLayout 和 TextView 。