gpt4 book ai didi

java - 在Android中使用不同组件设置表格布局中列的宽度相等

转载 作者:太空宇宙 更新时间:2023-11-04 11:56:23 27 4
gpt4 key购买 nike

我已阅读此问题Set equal width of columns in table layout in Android

看到答案后,确实各列具有相同的大小,但是当我用 EditText 替换两个 TextView 时,不再出现相同的大小。我该如何解决这个问题?

这是修改后的代码:

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/content_calendar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:stretchColumns="*"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_calendar">

<TableRow android:layout_width="0dp">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity=""
android:text="table header1"
android:textSize="10dip"
android:textStyle="bold" />

<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="table header3"
android:textSize="10dip"
android:textStyle="bold" />

<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="table header4"
android:textSize="10dip"
android:textStyle="bold" />
</TableRow>
</TableLayout>

最佳答案

试试这个:

    <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/content_calendar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:stretchColumns="*"
app:layout_behavior="@string/appbar_scrolling_view_behavior">

<TableRow android:layout_width="0dp">


<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">


<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity=""
android:text="table header1"
android:textSize="10dip"
android:textStyle="bold" />

<EditText
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />

<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="table header3"
android:textSize="10dip"
android:textStyle="bold" />

<EditText
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />

<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="table header4"
android:textSize="10dip"
android:textStyle="bold" />
</LinearLayout>
</TableRow>
</TableLayout>

关于java - 在Android中使用不同组件设置表格布局中列的宽度相等,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41365097/

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