如何将 NestedScrollView 中的视图固定在屏幕底部?

How do I pin a View from a NestedScrollView at the bottom of the screen?

我有一个 RecyclewView 和它下面的一个按钮,它们都在 NestedScrollView 里面。如果我向 RecyclerView 添加更多项目,该按钮将隐藏。

有没有办法在元素很多的情况下将按钮附加到屏幕底部,如果它适合屏幕,则附加到 RecyclerView 的底部?

    <androidx.core.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <androidx.recyclerview.widget.RecyclerView
                android:id="@+id/recycler_view"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                tools:itemCount="3"
                tools:listitem="@layout/form_field" />

            <Button
                android:id="@+id/send_button"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:text="Click me" />

        </LinearLayout>

    </androidx.core.widget.NestedScrollView>

应该是这样的:

尝试使用 ConstraintLayout 而不是 LinearLayout。 在XML文件中设置按钮在屏幕左、下、上、右的约束。

您可以从 NestedScrollView 中删除该视图。像这样:

这是编辑后的代码,它将完美运行。

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <androidx.core.widget.NestedScrollView
        android:id="@+id/scroll_view"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <androidx.recyclerview.widget.RecyclerView
                android:id="@+id/recycler_view"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                tools:itemCount="3"
                tools:listitem="@layout/form_field" />

        </LinearLayout>

    </androidx.core.widget.NestedScrollView>

    <Button
        android:layout_marginBottom="10dp"
        android:id="@+id/send_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="Click me" />

</LinearLayout>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:fillViewport="true" >

<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_marginTop="15px" >

    <!-- bunch of components here -->

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_below="@+id/spinner"
        android:layout_marginTop="5px"
        android:gravity="center_horizontal|bottom"
        android:paddingTop="2px" >

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="20px"
            android:paddingRight="20px"
            android:text="Delete" />
    </LinearLayout>
</RelativeLayout>