gpt4 book ai didi

android - 错误的 TableLayout 重量

转载 作者:行者123 更新时间:2023-11-29 00:56:15 25 4
gpt4 key购买 nike

我在线性布局中使用表格布局,第一行结果很好,但连续的行完全错误,尽管设置了它们。我不确定这是否是我正在运行的 Android Studio 版本的问题,或者它是否不适用于 kotlin ...有什么办法可以解决吗?我已经更新了所有内容。

我知道表格布局已经过时了,但我说真的不想使用约束布局,我非常讨厌它。这对我正在做的工作来说太多了。

activity_main.xml

enter image description here

<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.LinearLayoutCompat
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" android:background="@android:color/background_light"
android:orientation="vertical">
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_weight="8" android:orientation="horizontal">

<TableRow android:layout_width="match_parent" android:layout_height="match_parent">
<TextView
android:text="@string/loan_amount"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/textView15" android:textSize="18sp"
android:textStyle="bold" android:layout_weight="3"/>
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="numberDecimal"
android:ems="10"
android:id="@+id/loanAmount" android:layout_weight="7"/>
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:text="TextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/textView38" android:layout_weight="1"/>
<TextView
android:text="TextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/textView39" android:layout_weight="1"/>
<TextView
android:text="TextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/textView40" android:layout_weight="1"/>
</TableRow>
</TableLayout>
</androidx.appcompat.widget.LinearLayoutCompat>

最佳答案

只需在 TableRow 项中将 layout_width 设置为 0dp。如果您想将内容居中,请将 android:gravity="center" 添加到 TextView。

没有重力的代码看起来像这样:

<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:text="TextView"
android:layout_width="0dp"
android:layout_height="wrap_content" android:id="@+id/textView38" android:layout_weight="1"/>
<TextView
android:text="TextView"
android:layout_width="0dp"
android:layout_height="wrap_content" android:id="@+id/textView39" android:layout_weight="1"/>
<TextView
android:text="TextView"
android:layout_width="0dp"
android:layout_height="wrap_content" android:id="@+id/textView40" android:layout_weight="1"/>
</TableRow>

关于android - 错误的 TableLayout 重量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54612304/

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