如何让表格标题行不动?

发布于 2024-12-24 02:16:37 字数 1115 浏览 1 评论 0原文

此代码有效,但我需要调整标头字段和其余表的大小。如何调整列的大小?

<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/table_hsv"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >
    <TableLayout
        android:id="@+id/table_header"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:stretchColumns="1" >
        <TableRow
            android:id="@+id/table_header_row"
            android:background="@color/listcolor" >
        </TableRow>
        <ScrollView
            android:id="@+id/table_sv"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" >
            <TableLayout
                android:id="@+id/table_data"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:stretchColumns="1" >
            </TableLayout>
        </ScrollView>
    </TableLayout>
</HorizontalScrollView>

谢谢

This code works, but I need to adjust the sizes of header fields and the remaining table. How it is possible to adjust the size of columns?

<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/table_hsv"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >
    <TableLayout
        android:id="@+id/table_header"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:stretchColumns="1" >
        <TableRow
            android:id="@+id/table_header_row"
            android:background="@color/listcolor" >
        </TableRow>
        <ScrollView
            android:id="@+id/table_sv"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" >
            <TableLayout
                android:id="@+id/table_data"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:stretchColumns="1" >
            </TableLayout>
        </ScrollView>
    </TableLayout>
</HorizontalScrollView>

Thanks

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

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

发布评论

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

评论(1

蒲公英的约定 2024-12-31 02:16:37

抱歉,我已经找到问题的解决方案了。
https://github.com/StylingAndroid/ScrollingTable

I am sorry, I have found the problem resolution.
https://github.com/StylingAndroid/ScrollingTable

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