ScrollView for TableLayout不会滚动

时间:2016-06-10 07:25:56

标签: android android-tablelayout

我有一个LinearLayout,其中ScrollView内有TableLayout LinearLayout。{/ p>

我想沿着动态添加内容的TAbleLayout滚动。但它不起作用。我已经为LinearLayout而不是wrap_content提供了60dp,因此在列表继续时它不会延伸。所有其他布局都有外部滚动视图。

这是xml的一部分。

<LinearLayout
                android:layout_width="match_parent"
                android:layout_height="60dp"
                android:gravity="center"
                android:layout_gravity="center"
                android:orientation="vertical">

                <ScrollView
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_margin="10dp"
                    android:fillViewport="true"
                    >

                    <TableLayout
                        android:id="@+id/cashOutTableLayout"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:padding="15dp"
                        android:background="@drawable/edittext_style"
                        android:gravity="center">


                    </TableLayout>
                </ScrollView>
            </LinearLayout>

0 个答案:

没有答案