我有一个要求,我需要编写一个屏幕,其中有一个信息视图在顶部和查看分页器,底部有两个标签。 View pager有两个带有Recycler View的标签。
每当用户向上滚动时,View寻呼机都应该粘贴,然后其中的回收器视图应该开始滚动。为了达到这个目的,我为顶部和底部创建了两个独立的片段,并像这样编写了xml。
<com.citi.mobile.dashboard.views.StickyScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:fillViewport="true"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/core_color_FFFFFF_white">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include
android:id="@+id/title_id"
layout="@layout/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@+id/top_container"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</FrameLayout>
<FrameLayout
android:id="@+id/bottom_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:tag="sticky">
</FrameLayout>
</LinearLayout>
在底部容器内,我有一个View Page。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:custom="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="vertical">
<android.support.design.widget.TabLayout
android:id="@+id/TransTabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabGravity="fill"
app:tabIndicatorColor="@color/core_color_0077bb_blue"
app:tabMode="fixed"
app:tabSelectedTextColor="@color/core_color_0077bb_blue"
app:tabTextAppearance="@style/ledgerTabLayoutTextAppearance"
app:tabTextColor="@color/core_color_666666_grey"
custom:typefaceName="Roboto-Medium" />
<android.support.v4.view.ViewPager
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/transaction_pager"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</android.support.v4.view.ViewPager>
这有两个标签,每个标签都有一个回收站视图。当我运行它时,父滚动视图停止工作,只有recyclerview滚动工作。
答案 0 :(得分:0)
尝试将android:nestedScrollingEnabled="false"
添加到xml中的recyclerview。