如何让表格标题行不动?
此代码有效,但我需要调整标头字段和其余表的大小。如何调整列的大小?
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
抱歉,我已经找到问题的解决方案了。
https://github.com/StylingAndroid/ScrollingTable
I am sorry, I have found the problem resolution.
https://github.com/StylingAndroid/ScrollingTable