我正在构建一个社交应用,并且有一个用于查看用户个人资料的活动(如Instagram)。
我基本上希望能够从ScrollView正常自然地滚动到RecyclerView,反之亦然。 因此,例如,如果用户从RecyclerView的底部进行强力滑动,我希望它将他带到ScrollView的顶部。我正在考虑以下解决方案(但实际上并不知道如何做):使RecyclerView的高度“扩展”,这样它将包含所有项目,但没有滚动条,因此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>
答案 0 :(得分:0)
使用此mRecyclerView.setNestedScrollingEnabled(false);