gpt4 book ai didi

android - 不允许 TextView 填充整个列

转载 作者:行者123 更新时间:2023-11-29 13:58:04 26 4
gpt4 key购买 nike

我正在开发 Android 应用。

我有这样的布局:

enter image description here

我不想让一个 TextView 填满一整列。正如您在上一张图片中看到的那样,有一个 TextView 被蓝色矩形包围(实际上已被选中)。这是创建该 TableRow 的 XML 代码:

<TableRow>

<TextView
android:id="@+id/txtFactLoc"
android:layout_span="2"
android:gravity="center_vertical|right"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="@string/layout_fac_location"
android:textAppearance="?android:attr/textAppearanceMedium" />

<TextView
android:id="@+id/factLocVal"
android:layout_span="4"
android:gravity="center_vertical"
android:paddingLeft="10dp"
android:layout_height="match_parent"
android:background="@color/textview_background"
android:textAppearance="?android:attr/textAppearanceMedium" />

<TextView
android:id="@+id/txtConFactLoc"
android:gravity="center_vertical"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="@string/layout_confirm"
android:textAppearance="?android:attr/textAppearanceMedium" />

<RadioGroup
android:id="@+id/rGroupFactLoc"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<RadioButton
android:id="@+id/rFactLocYes"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="@string/layout_yes" />

<RadioButton
android:id="@+id/rFactLocNo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/layout_no" />

</RadioGroup>

</TableRow>

位于具有八列的 TableLayout 中。这是 TableLayout 的开始:

<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_margin="10dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:shrinkColumns="*"
android:stretchColumns="*">

<TableRow>
<TextView
android:id="@+id/txtPONo"
android:layout_weight=".125"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:text="@string/layout_po_no"
android:textAppearance="?android:attr/textAppearanceMedium" />


<TextView
android:id="@+id/pONoVal"
android:layout_weight=".125"
android:layout_width="0dip"
android:paddingLeft="10dp"
android:layout_height="match_parent"
android:background="@color/textview_background"
android:textAppearance="?android:attr/textAppearanceMedium" />

<TextView
android:id="@+id/txtIndNo"
android:layout_weight=".125"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:text="@string/layout_ind_no"
android:textAppearance="?android:attr/textAppearanceMedium" />

<TextView
android:id="@+id/indNoVal"
android:layout_weight=".125"
android:layout_width="0dip"
android:paddingLeft="10dp"
android:layout_height="match_parent"
android:background="@color/textview_background"
android:textAppearance="?android:attr/textAppearanceMedium" />

<TextView
android:id="@+id/txtTimeIn"
android:layout_weight=".1"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:text="@string/layout_time_in"
android:textAppearance="?android:attr/textAppearanceMedium" />

<TextView
android:id="@+id/timeInVal"
android:layout_weight=".15"
android:layout_width="0dip"
android:paddingLeft="10dp"
android:layout_height="match_parent"
android:background="@color/textview_background"
android:textAppearance="?android:attr/textAppearanceMedium" />

<TextView
android:id="@+id/txtTimeOut"
android:layout_weight=".1"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:text="@string/layout_time_out"
android:textAppearance="?android:attr/textAppearanceMedium" />

<TextView
android:id="@+id/timeOutVal"
android:layout_weight=".15"
android:layout_width="0dip"
android:paddingLeft="10dp"
android:layout_height="match_parent"
android:background="@color/textview_background"
android:textAppearance="?android:attr/textAppearanceMedium" />
</TableRow>

有些 textView 有背景色。如您所见,所有这些都填满了它的列,但我不希望这样,因为这种形式看起来非常难看。

如何更改 TextView 的宽度?如果我设置了 android:layout_span="2"我就不能改变它的宽度。

最佳答案

使用 android:stretchColumns,您可以决定允许拉伸(stretch)哪些列(将其放在 TableLayout 标记中)。

android:stretchColumns="0"
android:stretchColumns="0,1,2"
android:stretchColumns="*"

关于android - 不允许 TextView 填充整个列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11032684/

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