我遇到了同样的问题。我从来没有找到一个非常令人满意的解决方案,但是这就是我的方法。也许其他人有更好的方法,我讨厌添加不做任何事情的布局。
我的技巧是在滚动视图的底部添加一个虚拟的linearlayout,该布局具有fill_parent占据所有空间并强制滚动视图填充屏幕。然后将我想要的任何组件添加到该linearlayout中。
这是我执行此操作的布局之一:
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:fillViewport="true" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginTop="15px" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/spinner"
android:layout_marginTop="5px"
android:gravity="center_horizontal|bottom"
android:paddingTop="2px" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="20px"
android:paddingRight="20px"
android:text="Delete" />
</LinearLayout>
</RelativeLayout>
</ScrollView>