1

ネストされたスクロールビュー内でリサイクラービューを使用しました(CoordinatorLayout内にあります):

        <android.support.v4.widget.NestedScrollView
            android:id="@+id/scroll"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior">

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent">

                <android.support.v7.widget.RecyclerView
                    android:id="@+id/sections_recycler_view_linearlayout"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:orientation="vertical" />

            </RelativeLayout>

        </android.support.v4.widget.NestedScrollView>

上記のリサイクラーのアダプター内で、setNestedScrollingEnabled を false としてプログラムで子リサイクラー ビューを追加しました。

私の問題は次のとおりです。子リサイクラーをスクロールしているとき、そのスクロールが完了するとすぐに、アダプターを再度設定しているかのように、親リサイクラーが一番上にスクロールします。アダプターに通知したり、一番上のリサイクラー項目にスクロールしたり、アダプターを再度設定したりするためのコードは追加していません。この奇妙な動作の理由を理解できませんでした。

どんな助けでも大歓迎です.. !!!

4

3 に答える 3