android中的scrollView问题

时间:2010-09-02 12:57:40

标签: android

在我的Android应用程序中,我在滚动视图中使用了一个表,下面是一个页脚。 现在问题是页面的最后一行被页脚覆盖并且不可见。 对此有什么解决方案吗? 我的布局xml是

    <ScrollView
        android:id="@+id/Scroll"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:layout_weight="1"
        xmlns:android="http://schemas.android.com/apk/res/android">
     <TableLayout
    android:id="@+id/SubTable"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"

            xmlns:android="http://schemas.android.com/apk/res/android">
        </TableLayout>
        </ScrollView>

请告诉我您宝贵的建议。 在此先感谢:)

1 个答案:

答案 0 :(得分:0)

我会给页脚一个特定的高度,并在ScrollView的底部使用这个高度作为一个负边距。类似的东西:http://www.droidnova.com/layout-technique-static-elements-below-scrollview,123.html