我想知道如何使用静态表头创建可滚动表? (在按钮,图像等单元格中使用不同的元素)
我已经做了一些,但我不知道如何使不同表中的列按宽度相互匹配。
<TableLayout>
<TableRow>
Table headers...
</TableRow>
<ScrollView>
<TableLayout > <!-- Table content--></TableLayout >
</ScrollView>
</TableLayout>
谢谢!
答案 0 :(得分:1)
您应该抛弃TableLayout以获取ListView或GridView 然后使用RelativeLayout
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="horizontal"
android:layout_width="wrap_parent"
android:laout_height="wrap_content"
android:alignParentTop="true"
android:id="@+id/buttons">
<!-- Your Buttons Here -->
</LinearLayout>
<GridView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/buttons"/>
</RelativeLayout>