如何在 Google Play 之类的选项卡中启用水平滚动?
How to enable horizontal scroll in tab like Google Play?
关于 material 设计,我引用了一个很棒的 demo here。它有选项卡,但是当我添加太多选项卡项目时,它们会被压扁(见屏幕截图)。我怎样才能让它水平滚动?
我认为下面是我应该更改的布局,但我梳理了文档,似乎无法理解,请帮助!
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways" />
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:layout_margin="@dimen/fab_margin"
android:src="@drawable/ic_done" />
</android.support.design.widget.CoordinatorLayout>
SlidingTabLayout 和 SlidingTabStrip 类 是你要找的
您需要从 google 开发者站点复制这些 类,在 xml 中添加滑动标签布局,并在 java 中为滑动标签布局设置 viewpager。希望对你有帮助。
TabLayout
有一个方法 setTabMode()
,它可以是 MODE_FIXED
(默认)或 MODE_SCROLLABLE
,这是您需要的。
您也可以在 XML 中用 app:tabMode="scrollable"
定义它。
您可以将此 app:tabMode="scrollable"
添加到您的 android.support.design.widget.TabLayout
如果你添加了
app:tabMode="scrollable"
就像上面提到的那样,
shows the layout and you are not able to scroll
那么也许您已将它放在 XML 文件的顶部,并在其下方将 matchh_parent
(height/width) 添加到 ViewPager。因为 viewpager 位于选项卡布局之上,所以您将无法滚动。
将它添加到 XML 的底部,以便另一个视图与选项卡布局重叠。
关于 material 设计,我引用了一个很棒的 demo here。它有选项卡,但是当我添加太多选项卡项目时,它们会被压扁(见屏幕截图)。我怎样才能让它水平滚动?
我认为下面是我应该更改的布局,但我梳理了文档,似乎无法理解,请帮助!
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways" />
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:layout_margin="@dimen/fab_margin"
android:src="@drawable/ic_done" />
</android.support.design.widget.CoordinatorLayout>
SlidingTabLayout 和 SlidingTabStrip 类 是你要找的 您需要从 google 开发者站点复制这些 类,在 xml 中添加滑动标签布局,并在 java 中为滑动标签布局设置 viewpager。希望对你有帮助。
TabLayout
有一个方法 setTabMode()
,它可以是 MODE_FIXED
(默认)或 MODE_SCROLLABLE
,这是您需要的。
您也可以在 XML 中用 app:tabMode="scrollable"
定义它。
您可以将此 app:tabMode="scrollable"
添加到您的 android.support.design.widget.TabLayout
如果你添加了
app:tabMode="scrollable"
就像上面提到的那样,
shows the layout and you are not able to scroll
那么也许您已将它放在 XML 文件的顶部,并在其下方将 matchh_parent
(height/width) 添加到 ViewPager。因为 viewpager 位于选项卡布局之上,所以您将无法滚动。
将它添加到 XML 的底部,以便另一个视图与选项卡布局重叠。