12
<ScrollView android:layout_width="fill_parent" android:id="@+id/scrollView1"
        android:layout_height="fill_parent">
        <LinearLayout android:id="@+id/linearLayout1"
            android:layout_width="fill_parent" android:orientation="vertical"
            android:layout_height="fill_parent">
            <ListView android:id="@+id/listView1" android:layout_width="fill_parent"
                android:layout_height="fill_parent"></ListView>
        </LinearLayout>
    </ScrollView>

滚动视图填满了整个屏幕,但 linearLayout1 只填满了屏幕的一小部分,高度接近 100dip。如何使 linearLayout1 填充父级?

4

2 回答 2

32

尝试:

android:fillViewport="true" 

滚动视图上

更多信息:LinearLayout not expand inside a ScrollView

于 2012-03-09T14:41:52.383 回答
0

ScrollView 中不能有 ListView。

于 2012-03-09T14:41:58.780 回答