У меня есть такая структура, когда я пытаюсь прокрутить вне области RecyclerView , она не работает (прокрутка)
<?xml version="1.0" encoding="utf-8"?> <androidx.core.widget.NestedScrollView 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="match_parent" android:fillViewport="true"> <androidx.constraintlayout.widget.ConstraintLayout android:id="@+id/root" android:layout_width="match_parent" android:layout_height="match_parent" > <androidx.cardview.widget.CardView </androidx.cardview.widget.CardView> <androidx.recyclerview.widget.RecyclerView /> </androidx.constraintlayout.widget.ConstraintLayout>
Любая помощь в этом!!!
Вы можете попробовать добавить это свойство для RecyclerView - android:nestedScrollingEnabled="false"
RecyclerView
android:nestedScrollingEnabled="false"