RecyclerView项与布局的其余部分重叠

时间:2019-07-11 22:08:32

标签: android xml android-recyclerview

我尝试创建一个RecyclerView,它必须位于我的视图的底部,并且我希望能够滚动RecyclerView,所以我添加了NestedScrollView。 但是问题是:当RecyclerView的项目过多时,我将无法滚动甚至更糟,因为这些项目位于屏幕顶部并与其余布局重叠。

<ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

       <unrelated data>...</unrealated data>

       <androidx.core.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="12dp"
        app:layout_constraintTop_toBottomOf="@+id/XXX"
        tools:layout_editor_absoluteX="0dp">

        <LinearLayout
            android:id="@+id/linear_layout"
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/list"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:overScrollMode="never"
            android:scrollbars="vertical"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHorizontal_bias="0.0"
            app:layout_constraintStart_toStartOf="parent" />
        </LinearLayout>

    </androidx.core.widget.NestedScrollView>


</ConstraintLayout>

0 个答案:

没有答案