如何使用滑动标签指示器固定标签,如下所述:
http://www.pushing-pixels.org/2013/05/09/android-bits-and-pieces-sliding-tabs-madness.html
& 这里
http://viewpagerindicator.com/
使用尽可能多的库存 android。但重要的部分是固定的,我不希望标签看起来像所有这些示例一样位于滚动视图中。最好用图标而不是文字。
如何使用滑动标签指示器固定标签,如下所述:
http://www.pushing-pixels.org/2013/05/09/android-bits-and-pieces-sliding-tabs-madness.html
& 这里
http://viewpagerindicator.com/
使用尽可能多的库存 android。但重要的部分是固定的,我不希望标签看起来像所有这些示例一样位于滚动视图中。最好用图标而不是文字。
Use https://github.com/astuetz/PagerSlidingTabStrip and .setShouldExpand(true)
As long as your tabs would normally fit in the parent width (screen width), then you'll get fixed tabs with an animated tab indicator.
至于股票 android 解决方案,我假设您可以在容器顶部(在 ActionBar 下方)使用 HorizontalScrollView 并使用从 ActionBar 获得的SmoothScrollTo(int x, int y)
方法x
和y
坐标。但这只是开始,你必须做很多修改。还有一个 Apache 2.0 许可库@github 已经为您完成了所有这些修改,因此您可以使用它。