gpt4 book ai didi

android - 如何使表格布局中的列均匀分布,最大限度地利用可用空间

转载 作者:IT老高 更新时间:2023-10-28 23:40:18 30 4
gpt4 key购买 nike

我只是在尝试使用表格布局来显示一些数据....数据是 3 列数据,我希望这些列应该利用可用的整个宽度。但似乎我使用的布局 XML 代码只是根据内容包装列。

布局 XML 代码

<?xml version="1.0" encoding="utf-8"?>
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TableRow
android:layout_width="fill_parent">
<TextView
android:padding="3dip"
android:gravity="left"
android:text="Name"
/>
<TextView
android:padding="3dip"
android:gravity="left"
android:text="Address"
/>

<TextView
android:padding="3dip"
android:gravity="left"
android:text="Age"
/>
</TableRow>
</TableLayout>

最佳答案

您可以尝试添加android:stretchColumns="0,1,2"给您的<TableLayout>元素。

关于android - 如何使表格布局中的列均匀分布,最大限度地利用可用空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2340647/

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