具有垂直和水平滚动和固定标题的表格,scrollview不会滚动到底部

时间:2015-09-27 20:56:06

标签: android android-layout

我试图用垂直和水平滚动和固定标题创建一个表。布局如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <HorizontalScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginLeft="16dp"
        android:layout_marginRight="16dp"
        android:layout_marginTop="16dp"
        android:overScrollMode="never"
        android:scrollbars="none">

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

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

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

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

            </ScrollView>

        </LinearLayout>

    </HorizontalScrollView>

</RelativeLayout>

水平滚动效果很好,但垂直方向不会滚动到底部。怎么了?感谢。

0 个答案:

没有答案