选择tablayout的标签时,在recyclerview中滚动位置,反之亦然

时间:2019-10-28 12:00:43

标签: java android android-recyclerview

如何一起使用tablayout和recyclerview?

  • 选择某些标签页后,滚动到recyclerview中的位置
  • 当我在recyclerview中滚动位置时选择选项卡

main_fragment.xml

<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <com.google.android.material.tabs.TabLayout
            android:id="@+id/tabLayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:elevation="2dp"
            app:layout_scrollFlags=""
            app:tabGravity="fill"
            app:tabIndicatorColor="@color/colorAccent"
            app:tabMode="scrollable"
            app:tabRippleColor="@color/colorAccent" />

            <androidx.recyclerview.widget.RecyclerView
                android:id="@+id/recyclerView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" />

</LinearLayout>

0 个答案:

没有答案