相对布局中的滚动视图

Scrollview in Relative layout

我有一个巨大的项目列表,我将它们放入线性布局中,然后将其放入滚动视图中以使其可滚动。

然后我将其全部包装到相对视图中,因为我想在底部添加按钮。

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

A LOT OF CONTENT


        </LinearLayout>
    </ScrollView>

    <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:id="@+id/add"
            android:text="@string/add"
            android:paddingTop="23dp"/>
</RelativeLayout>

由于每当我滚动到列表的最底部时都会在底部添加按钮,添加按钮会挡住滚动视图的最底部。我怎样才能让 scrollview 只适合添加按钮不占用的屏幕部分?

将规则 android:layout_above="@+id/add" 设置为 ScrollView

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent"
    android:layout_width="match_parent">
    <ScrollView
        android:layout_width="match_parent"
        android:layout_above="@+id/add"
        android:layout_height="match_parent">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            A LOT OF CONTENT


        </LinearLayout>
    </ScrollView>

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:id="@+id/add"
        android:text="@string/add"
        android:paddingTop="23dp"/>
</RelativeLayout>

将此添加到滚动视图:

 android:layout_above="@+id/add"