此代码有效,但我需要调整标题字段和剩余表格的大小。如何调整列的大小?
<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>
由于