android: descendantFocusability = "blocksDescendants"
add to NestedScrollView and add
android: focusableInTouchMode = "true"
in the child layout it looks below
<androidx.core.widget.NestedScrollView
android:descendantFocusability="blocksDescendants">
<androidx.constraintlayout.widget.ConstraintLayout
android:focusableInTouchMode="true">
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.core.widget.NestedScrollView>
source
share