android – LinearLayout不填写scrollview

前端之家收集整理的这篇文章主要介绍了android – LinearLayout不填写scrollview前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<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>

scrollview填充整个屏幕,但linearLayout1仅填充屏幕的一小部分高度近100dip的部分.如何使linearLayout1填充父项?

解决方法

尝试:
android:fillViewport="true"

在scrollView上

更多信息:LinearLayout not expanding inside a ScrollView

原文链接:https://www.f2er.com/android/312088.html

猜你在找的Android相关文章