如何制作一动不动的表头行?

时间:2012-01-04 13:33:07

标签: android android-layout tablelayout

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

<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>

由于

1 个答案:

答案 0 :(得分:1)

对不起,我找到了解决问题的方法。 https://github.com/StylingAndroid/ScrollingTable