0

这是我的布局文件:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/yellow" >

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

        <include
            android:id="@+id/header"
            layout="@layout/header" />

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_marginTop="10dp"
            android:background="@drawable/green"
            android:orientation="vertical" >

            <TextView/>

            <TextView/>

            <TextView/>

            <TextView/>

        </LinearLayout>
    </LinearLayout>

</ScrollView>

这是它的外观:

在此处输入图像描述

蓝色是标题,黄色是 ScrollView,绿色是 LinearLayout,我想填充用红色箭头标记的空间。

为了使用 ScrollView,我使用了另一个包含标题和绿色 LinearLayout 的 LinearLayout。

问题:如何让 Green LinearLayout 将整个空间填充到底部?

4

1 回答 1

3

在 ScrollView 上,尝试将填充视口设置为 true。

您可以通过 xml 或代码来完成。

http://developer.android.com/reference/android/widget/ScrollView.html#setFillViewport(boolean )

于 2012-10-30T10:47:21.197 回答