我已经实现了一个可以在片段之间滑动的 TitlePageIndicator,但是我希望在屏幕底部有固定的选项卡,当用户在片段中滑动时它们不会移动。
我开始以标准方式实现此功能,但意识到我的主机活动不能同时扩展 TabActivity 和 FragmentActivity。做这样的事情的正确方法是什么?我的想法是我必须实现自己的选项卡,而不是使用 TabHost 和 TabWidget。
我已经实现了一个可以在片段之间滑动的 TitlePageIndicator,但是我希望在屏幕底部有固定的选项卡,当用户在片段中滑动时它们不会移动。
我开始以标准方式实现此功能,但意识到我的主机活动不能同时扩展 TabActivity 和 FragmentActivity。做这样的事情的正确方法是什么?我的想法是我必须实现自己的选项卡,而不是使用 TabHost 和 TabWidget。
您可以使用FragmentTabsPager(扩展 FragmentPagerAdapter 的 TabsAdapter)
您可以使用 TabLayout 如下
<android.support.v4.view.ViewPager
android:id="@+id/viewPager"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/toolbar_dialog">
<android.support.design.widget.TabLayout
android:id="@+id/pager_tab_strip"
app:tabMode="fixed"
app:tabTextColor="@color/gray2"
app:tabIndicatorColor="@color/gray2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top" />
</android.support.v4.view.ViewPager>