2

为什么滚动视图内的线性布局不适合屏幕尺寸?我试图用“Layout_Height”做一些改变,但没有成功。

这是我的 XML 代码:

感谢帮助!

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/scrollViewPhysicalExam"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/background"
        android:orientation="vertical" >
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            style="@style/HeaderText"
            android:orientation="vertical" >
    <!-- ++++++++++++++++++ Row18 ++++++++++++++++++ -->
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent" >                  
                <Button
                    android:id="@+id/btnBack"
                    android:text="@string/Back"
                    android:layout_width="0dp"
                    android:layout_height="match_parent"
                    android:layout_weight="1.00"
                    android:textSize="15dip" />
                <Button
                    android:id="@+id/btnSave"
                    android:text="Save"
                    android:layout_width="0dp"
                    android:layout_height="match_parent"
                    android:layout_weight="1.00"
                    android:textSize="15dip" />
            </LinearLayout>

    <!-- +++++++++++++++++++++++++++++++++++++++++++ -->
        </LinearLayout>
    </LinearLayout>
</ScrollView>
4

2 回答 2

6

我无法发表评论,所以我会尝试回答:您是否尝试设置android:fillViewport="true"您的ScrollView?

于 2014-10-27T12:07:58.270 回答
0

1)你为什么要LinearLayout在一个LinearLayout里面嵌套另一个LinearLayout?我只能假设这只是您的 xml 文件的摘录,否则这没有任何意义。

2)您遇到的具体问题是什么?LinearLayout太长以至于它会在底部留下可见屏幕?如果是这样,这是由于ScrollView作为父元素。AScrollView将通过设置填满屏幕android:layout_height="match_parent"。AScrollView本身为其子视图提供了无限的高度空间,因此设置android:layout_height="match_parent"在子视图 ( LinearLayout) 中也会使其占用无限空间。您应该将其设置为android:layout_height="wrap_content",看看是否适合您!

于 2013-04-07T11:35:42.460 回答