gpt4 book ai didi

android - TextView 高度不匹配_parent/fill_parent

转载 作者:太空狗 更新时间:2023-10-29 15:17:10 28 4
gpt4 key购买 nike

我有一个带有单行的简单 TextView。我想将高度设置为 match_parent/fill_parent,但 Android 的行为只是 wrap_content。

有没有办法强制 TextView 占据所有高度?

谢谢

编辑:

这是我得到的:

enter image description here和我的布局:

<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>

最佳答案

您可以将 TextView 的高度设置为 ma​​tch_parent/fill_parent。并根据您的要求更改该 TextViewgravity所有其他属性

如果这对您来说还不够,请告诉我您到底想做什么。

编辑:

根据您新编辑的代码,我处理了您的代码。

<?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

关于android - TextView 高度不匹配_parent/fill_parent,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11774988/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com