如何在scrollview中进行linearlayout以填充整个区域

时间:2013-02-12 17:11:50

标签: android layout android-gui

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <ScrollView
        android:id="@+id/scrollView1"
        android:background="#000000"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <LinearLayout
            android:id="@+id/linear1"
            android:background="#FF0000"
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent" >

            <LinearLayout
                android:background="#00FF00"
                android:id="@+id/linear2"
                android:layout_width="match_parent"
                android:layout_height="200dip"
                android:orientation="vertical" >
            </LinearLayout>

            <LinearLayout
                android:background="#0000FF"
                android:id="@+id/linear3"
                android:layout_width="match_parent"
                android:layout_height="100dip"
                android:orientation="vertical" >
            </LinearLayout>

        </LinearLayout>
    </ScrollView>
</RelativeLayout>

这是我的布局,我希望看到一个红色背景(因为linear1有背景红色,并且有填充父级的属性),另外两个布局有线性1,绿色和蓝色bacgroudns

但我实际看到的是来自scrollview的黑色bacground和来自linear2和linear3的绿色和蓝色但没有来自linear1的红色背景

即线性就像android:layout_height =“wrap_content”设置不是android:layout_height =“match_parent”

任何想法?

1 个答案:

答案 0 :(得分:69)

您需要设置fillViewport:

<ScrollView
    android:id="@+id/scrollView1"
    android:background="#000000"
    android:layout_width="match_parent"
    android:fillViewport="true" <!-- here -->
    android:layout_height="match_parent" >

    ...

 </ScrollView>

information