RecyclerView внутри NestedScrollView — нежелательная прокрутка для начала

#java #android #android-recyclerview #android-nestedscrollview

#java #Android #android-recyclerview #android-nestedscrollview

Вопрос:

Мой макет включает RecyclerView внутри NestedScrollView, например:

  <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
   <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:id="@ id/scrollView2"
                    android:layout_width="0dp"
                    android:layout_height="0dp"
                    android:layout_marginBottom="@dimen/default_margin"
                    android:layout_marginLeft="@dimen/default_margin"
                    android:layout_marginRight="@dimen/default_margin"
                    android:layout_marginTop="@dimen/default_margin"
                    android:maxLength="32"
                    app:layout_constraintBottom_toTopOf="@ id/linear2"
                    app:layout_constraintHorizontal_bias="0.0"
                    app:layout_constraintLeft_toLeftOf="parent"
                    app:layout_constraintRight_toRightOf="parent"
                    app:layout_constraintTop_toTopOf="parent"
                    app:layout_constraintVertical_bias="0.0">

            <androidx.constraintlayout.widget.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="match_parent">

              ...some controls unrelated
               <androidx.recyclerview.widget.RecyclerView
                    android:id="@ id/parametersList"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginTop="8dp"
                    android:fadeScrollbars="false"
                    android:paddingTop="8dp"
                    android:paddingBottom="32dp"
                    android:scrollbars="vertical"
                    app:layout_constraintEnd_toEndOf="parent"
                    app:layout_constraintHorizontal_bias="0.0"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintTop_toBottomOf="@ id/add_event_phone_number"/>

  </androidx.constraintlayout.widget.ConstraintLayout>
        </androidx.core.widget.NestedScrollView>

        <LinearLayout
            android:id="@ id/linear2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginBottom="@dimen/default_margin"
            android:layout_marginLeft="@dimen/default_margin"
            android:layout_marginRight="@dimen/default_margin"
            android:orientation="horizontal"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent">

            <Button
                android:id="@ id/add_event_confirm_button"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginRight="5dp"
                android:layout_weight="1"
                android:background="@android:color/holo_green_dark"
                android:elevation="0dp"
                android:text="@string/button_confirm"
                android:textColor="@android:color/white"/>

            <Button
                android:id="@ id/add_event_cancel_button"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="5dp"
                android:layout_weight="1"
                android:background="@color/cardview_dark_background"
                android:text="@string/button_cancel"
                android:textColor="@android:color/white"/>
        </LinearLayout>



    </androidx.constraintlayout.widget.ConstraintLayout>
 

В коде Java именно так инициализируется RecyclerView:

 recyclerView.setLayoutManager(new LinearLayoutManager(this));
recyclerView.setAdapter(parametersAdapter);
recyclerView.parametersList.setNestedScrollingEnabled(false);
 

Некоторые элементы представления recycler содержат блесны. Проблема: когда выбрано значение счетчика, просмотр recycler автоматически прокручивается до начала. Я не понимаю, почему, как это предотвратить? Счетчик при выбранном событии обновляет только коллекцию, привязанную к адаптеру. Каждый раз, когда это происходит, recyclerview прокручивается, чтобы начать.

Ответ №1:

Можете ли вы попробовать добавить android: descendantFocusability=»blocksDescendants» в первый элемент вашего scrollview ConstraintLayout)