1. 程式人生 > >設定ScrollView 裡面的佈局高度為match_parent不起作用

設定ScrollView 裡面的佈局高度為match_parent不起作用

xml:

<ScrollView
android:id="@+id/sv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/layout_top"
android:scrollbars="none"
>
    <RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
        <TextView
android:id="@+id/text_sure" android:layout_width="150dp" android:layout_height="40dp" android:layout_centerHorizontal="true" android:layout_alignParentBottom="true" android:text="確定" android:textColor="@color/white" android:textSize="16sp" android:background="@drawable/shape_fillet_orange" android:gravity=
"center" android:layout_marginBottom="25dp" /> </RelativeLayout> </ScrollView>

檢視:

修改:

在scrollview裡面新增

android:fillViewport="true"

修改後檢視: