gpt4 book ai didi

android - TextView 不会填满父宽度

转载 作者:行者123 更新时间:2023-11-29 14:27:23 24 4
gpt4 key购买 nike

我有一个表格布局,有两行。

Textview 的宽度不会填满表格行的整个宽度,但它填满了高度。

表格行的大小正确,填充了一半的高度和整个宽度。

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TableRow
android:id="@+id/tableRow1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1" >

<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />

</TableRow>

<TableRow
android:layout_weight="1"
android:id="@+id/tableRow2"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
</TableRow>

</TableLayout>

最佳答案

添加到你的 TextView

android:layout_weight="1"

关于android - TextView 不会填满父宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24548338/

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