我已经实现了一个可以在片段之间滑动的TitlePageIndicator,但是我希望屏幕底部有固定的标签,当用户在片段中滑动时,它们不会移动。
我开始以标准方式实现此功能,但意识到我的主机活动无法扩展TabActivity和FragmentActivity。做这样的事情的正确方法是什么?我的想法是,我必须实现自己的标签,而不是使用TabHost和TabWidget。
答案 0 :(得分:2)
您可以使用FragmentTabsPager(扩展FragmentPagerAdapter的TabsAdapter)
答案 1 :(得分:0)
您可以按以下方式使用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>