我有一个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>