Android - 滚动视图中的回收视图

Android - Recycleview Inside Scrollview

我正在构建一个社交应用程序并有一个 activity 用于查看用户的个人资料(如 Instagram)。

我基本上希望能够正常自然地从 ScrollView 滚动到 RecyclerView,反之亦然。 因此,例如,如果用户从 RecyclerView 的底部用力滑动,我希望它把他带到 ScrollView 的顶部。我正在考虑以下解决方案(但真的不知道该怎么做):使 RecyclerView 的高度 "expanded" 以便它包含所有项目但没有滚动条,这样 ScrollView 就可以做到这一点很自然东西.

我的布局是这样的:

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

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

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

  <!-- FIRST REGION THIS IS SET PRGRAMATICALLY TO TAKE UP WHOLE SCREEN-->

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

              <ImageView> <Textview> <Bla> <Bla>

         </RelativeLayout>

   <!-- SECOND REGION ALSO SET TO TAKE UP ALL SCREEN PROGRAMATICALLY-->

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

        <android.support.v7.widget.RecyclerView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:scrollbars="vertical"
             />

        </RelativeLayout>

   </LinearLayout>

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

</RelativeLayout>

截图: First Region Second Region

使用这个mRecyclerView.setNestedScrollingEnabled(false);