展开 TableLayout 的最后一行

发布于 2025-01-05 16:29:50 字数 774 浏览 0 评论 0原文

我有一个大约 3 行的 TableLayout。我想获取最后一行的高度来填充视图的其余部分,但运气不太好(因为使用 Android 布局是徒劳的一课)。这是我到目前为止所拥有的:

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

     <TableRow android:padding="5dip">
          <TextView
             android:text="Row 1"
          />
     </TableRow>
     <TableRow android:padding="5dip">
         <TextView
            android:text="Row 2"
          />
    </TableRow>
    <TableRow android:padding="5dip" android:layout_height="fill_parent">
        <TextView
             android:text="Row 3"
          />
    </TableRow>
</TableLayout>

I have a TableLayout with about 3 rows. I'd like to get the last row's height to fill in the rest of the View, but not having much luck (since working with Android layouts is a lesson in futility). This is what I have so far:

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

     <TableRow android:padding="5dip">
          <TextView
             android:text="Row 1"
          />
     </TableRow>
     <TableRow android:padding="5dip">
         <TextView
            android:text="Row 2"
          />
    </TableRow>
    <TableRow android:padding="5dip" android:layout_height="fill_parent">
        <TextView
             android:text="Row 3"
          />
    </TableRow>
</TableLayout>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

笑脸一如从前 2025-01-12 16:29:50

解决方案:

为此,您必须在布局中使用weight

请参阅下面的 XML 代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    android:orientation="horizontal" android:id="@+id/title"
    android:background="#FF0000">

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

        <TableRow android:padding="5dip">
            <TextView android:text="Row 1" />
        </TableRow>
        <TableRow android:padding="5dip">
            <TextView android:text="Row 2" />
        </TableRow>
        <TableRow android:padding="5dip" android:layout_weight="1">
            <TextView android:text="Row 3" />
        </TableRow>
    </TableLayout>
</RelativeLayout>

Solution:

For that you have to use weight in layout.

See below XML code:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    android:orientation="horizontal" android:id="@+id/title"
    android:background="#FF0000">

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

        <TableRow android:padding="5dip">
            <TextView android:text="Row 1" />
        </TableRow>
        <TableRow android:padding="5dip">
            <TextView android:text="Row 2" />
        </TableRow>
        <TableRow android:padding="5dip" android:layout_weight="1">
            <TextView android:text="Row 3" />
        </TableRow>
    </TableLayout>
</RelativeLayout>
乖乖 2025-01-12 16:29:50

只需使用更简单的 LinearLayout 即可。以下 0dp 是故意的。

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

     <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="5dip" android:orientation="horizontal">
          <TextView
             android:text="Row 1"
          />
     </LinearLayout>
     <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="5dip" android:orientation="horizontal">
         <TextView
            android:text="Row 2"
          />
    </LinearLayout>
    <LinearLayout android:layout_width="fill_parent" android:padding="5dip" android:layout_height="0dp" android:layout_weight="1" android:orientation="horizontal">
        <TextView
             android:text="Row 3"
          />
    </LinearLayout>
</LinearLayout>

Just use the easier LinearLayout. 0dp below is intentional.

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

     <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="5dip" android:orientation="horizontal">
          <TextView
             android:text="Row 1"
          />
     </LinearLayout>
     <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="5dip" android:orientation="horizontal">
         <TextView
            android:text="Row 2"
          />
    </LinearLayout>
    <LinearLayout android:layout_width="fill_parent" android:padding="5dip" android:layout_height="0dp" android:layout_weight="1" android:orientation="horizontal">
        <TextView
             android:text="Row 3"
          />
    </LinearLayout>
</LinearLayout>
机场等船 2025-01-12 16:29:50

您是否尝试设置其他两行的布局高度或将其设置为换行内容并将最后一行设置为填充父级?

Did you try setting the layout height for other 2 rows or setting it to wrap content and last one as fill parent?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文