3

我有一个带有单行的简单 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>
4

2 回答 2

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 。

试试这个代码。它的工作。像我对这些所做的那样更改您的RelativeLayoutTextView 。

于 2012-08-02T10:15:33.157 回答
0

对于该TextView父宽度,您可以使用wrap_content.

于 2012-08-02T10:14:42.083 回答