使垂直滚动条可见,水平滚动条可见

时间:2012-07-05 06:43:21

标签: android scroll android-tablelayout

我正在开发一个Android应用程序,其中我首先需要3个表格布局,最后一个应该在水平滚动,中间应该在两个方向滚动,我需要动态地向这些表格布局添加行。

1 个答案:

答案 0 :(得分:0)

尝试以这种方式创建布局,

    

<ScrollView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <TableLayout
            android:id="@+id/table_layout1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >
        </TableLayout>

        <HorizontalScrollView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >

            <TableLayout
                android:id="@+id/table_layout2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" >
            </TableLayout>
        </HorizontalScrollView>

        <TableLayout
            android:id="@+id/table_layout3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >
        </TableLayout>
    </LinearLayout>
</ScrollView>