0

次のレイアウトを使用していますが、RecyclerView をスクロールできません (このレイアウトを使用すると画面に表示されず、NestedScrollView までスクロールが停止します)。

NestedScrollView と CollapsingToolbar までスクロールして折りたたむことができます。NestedScrollView 全体を削除すると、RecyclerView がスクロールします。

NestedScrollView を使用せずに線形レイアウトを維持すると、RecyclerView のみがスクロールし、残りのレイアウトは固定されます。

RecyclerView にも追加app:layout_behavior="@string/appbar_scrolling_view_behavior"し、RecyclerView を NestedScrollView から除外しました。

NestedScrollView 内に RecyclerView を追加すると、RecyclerView が表示されません。

<android.support.design.widget.CoordinatorLayout
    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:fitsSystemWindows="true"
    tools:context="com.example.MainFragment">

    <!-- android.support.design.widget.AppBarLayout here
         with a android.support.design.widget.CollapsingToolbarLayout
    -->

 <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <android.support.v4.widget.NestedScrollView
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical">

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:padding="10dp">

                    <!-- more layout code here -->
                    <TextView
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:text="@string/large_text"/>

                </RelativeLayout>



                <View
                    android:id="@+id/separator"
                    android:layout_width="match_parent"
                    android:layout_height="1dp"
                    android:background="@color/colorAccent" />

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


        <android.support.v7.widget.RecyclerView
            android:id="@+id/recyclerViewListOfData"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            tools:listitem="@layout/recycler_view"
           app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
    </LinearLayout>
4

2 に答える 2

1

RecyclerView内部に追加する場合は、NestedScrollViewこの行を xml ファイルの RecyclerView に追加しますapp:layoutManager="LinearLayoutManager"

<android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.v7.widget.RecyclerView
            android:id="@+id/your_recyclerview"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layoutManager="LinearLayoutManager"/>

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

次に、アダプタを に設定する前にSomeActivity.java、入力するファイルRecyclerViewにこの行を挿入します。recyclerView.setNestedScrollingEnabled(false);RecyclerView

RecyclerView recyclerView=(RecyclerView)findViewById(R.id.your_recyclerview);
recyclerView.setNestedScrollingEnabled(false);
recyclerView.setAdapter(yourAdapter);
于 2016-10-21T13:05:20.373 に答える