可滚动的tabhost

时间:2015-08-05 19:30:51

标签: android android-tabhost scrollable

如何在Google PlayStore应用中实现可滚动的tabhost?

enter image description here

2 个答案:

答案 0 :(得分:1)

您可以使用TabLayout小部件并将设置模式设置为可滚动来实现它。 示例#1

<android.support.design.widget.TabLayout
    android:id="@+id/sliding_tabs"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    app:tabMode="scrollable" /> 

或代码 实施例#2:

tabLayout.setTabMode(TabLayout.MODE_SCROLLABLE);

答案 1 :(得分:1)

Google MDRregions显示Google I / O Android App中使用的自定义SlidingTabLayout标题条。根据您的具体要求,请查看示例git demo ViewPager。我希望它会有所帮助你很多。