我的活动中的 ViewPager 中有两个片段,
其中一个有 RecyclerView
<com.fourbigbrothers.boilerplate.widgets.recyclerview.FbbRecyclerView
android:id="@+id/rvMyWorks"
android:layout_gravity="start"
android:layout_marginTop="5dp"
android:layout_width="match_parent"
android:layout_height="match_parent" />
另一个人有一个 LinearLayout &amp; FrameLayout
中的 RecyclerView<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<LinearLayout
android:weightSum="1"
android:padding="5dp"
android:background="@drawable/bg_card_material_normal"
android:orientation="horizontal"
android:gravity="center"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/tvHashtagsToFilter"
tools:text="#cr7,#kb9,#halamadrid"
android:paddingTop="3dp"
android:paddingBottom="3dp"
android:paddingLeft="10dp"
android:textSize="14dp"
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
<com.fourbigbrothers.boilerplate.widgets.recyclerview.FbbRecyclerView
android:id="@+id/rvTrendingWorks"
android:layout_gravity="start"
android:layout_marginTop="5dp"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</FrameLayout>
滚动行为在第一个片段中正常工作,但在第二个片段中没有。我尝试使用 NestedScrollView 而不是 FrameLayout ,但没有找到运气。 请帮助。