All Projects → jpardogo → PagerSlidingTabStrip

jpardogo / PagerSlidingTabStrip

Licence: other
An interactive indicator to navigate between the different pages of a ViewPager

Projects that are alternatives of or similar to PagerSlidingTabStrip

Flowhelper
帮助您迅速构建顶部Tab,比如今日头条效果,热搜、搜索记录、与ViewPager/ViewPager2搭配的工具类;
Stars: ✭ 295 (-86.55%)
Mutual labels:  viewpager, tablayout, tab
Material-BottomBarLayout
🎉A material navigation bar library which has pretty animations and different ways of arrangement.
Stars: ✭ 56 (-97.45%)
Mutual labels:  tabs, viewpager, tablayout
IndicatorView
IndicatorView Library For Android
Stars: ✭ 41 (-98.13%)
Mutual labels:  tabs, viewpager
Animatedtablayout
Yet another android tab layout
Stars: ✭ 572 (-73.93%)
Mutual labels:  tabs, tablayout
react-context-tabs
Flexible tabs for React
Stars: ✭ 31 (-98.59%)
Mutual labels:  tabs, tab
react-native-paper-tabs
Smooth and fast cross platform Material Design Tabs for React Native Paper
Stars: ✭ 112 (-94.9%)
Mutual labels:  tabs, viewpager
un-material-tab
(deprecated) Custom tab layout which can be used as a material TabLayout alternative and contains basic functionality which Google's TabLayout has.
Stars: ✭ 83 (-96.22%)
Mutual labels:  tabs, tablayout
Fliptabs
Android Flip Tabs Library
Stars: ✭ 135 (-93.85%)
Mutual labels:  tabs, tab
Magicindicator
A powerful, customizable and extensible ViewPager indicator framework. As the best alternative of ViewPagerIndicator, TabLayout and PagerSlidingTabStrip —— 强大、可定制、易扩展的 ViewPager 指示器框架。是ViewPagerIndicator、TabLayout、PagerSlidingTabStrip的最佳替代品。支持角标,更支持在非ViewPager场景下使用(使用hide()、show()切换Fragment或使用setVisibility切换FrameLayout里的View等),http://www.jianshu…
Stars: ✭ 8,969 (+308.8%)
Mutual labels:  viewpager, tablayout
Android Tablayouthelper
A small library which helps to use TabLayout with ViewPager more easily.
Stars: ✭ 181 (-91.75%)
Mutual labels:  tabs, tablayout
Tabman
™️ A powerful paging view controller with interactive indicator bars
Stars: ✭ 2,235 (+1.87%)
Mutual labels:  tabs, viewpager
ViewWorld
自定义View合集,展示各种自定义View/控件。项目包含了自定义Banner轮播图控件,自定义验证码输入框,自定义TabLayout等控件,持续更新中😉😉😉
Stars: ✭ 94 (-95.72%)
Mutual labels:  viewpager, tablayout
alfred-tabs
🔍 Find Chrome/Safari tabs you want easily
Stars: ✭ 13 (-99.41%)
Mutual labels:  tabs, tab
react-native-viewpager-carousel
a flexible viewpager library with carousel functionality
Stars: ✭ 39 (-98.22%)
Mutual labels:  tabs, viewpager
Electron Tabs
Simple tabs for Electron applications
Stars: ✭ 350 (-84.05%)
Mutual labels:  tabs, tab
Whatsappviewpager
Swipeable tabs like WhatsApp in Android
Stars: ✭ 115 (-94.76%)
Mutual labels:  viewpager, tablayout
Docsify Tabs
A docsify.js plugin for rendering tabbed content from markdown
Stars: ✭ 65 (-97.04%)
Mutual labels:  tabs, tab
Viewpagerhelper
这个一个 viewpager/viewpager2工具类,能够帮你快速实现导航栏轮播图,app引导页,viewpager/viewpager2 + fragment;内置多种tab指示器,让你告别 viewpager 的繁琐操作,专注逻辑功能
Stars: ✭ 957 (-56.38%)
Mutual labels:  viewpager, tablayout
Android Tab Animation
Easily create TabLayout.Tab animations that sync with the scrolling progress of ViewPager
Stars: ✭ 68 (-96.9%)
Mutual labels:  viewpager, tablayout
Hyper Tabs Enhanced
Enhanced Tabs Plugin for Hyper
Stars: ✭ 173 (-92.11%)
Mutual labels:  tabs, tab

Android PagerSlidingTabStrip (default Material Design)

This library is not maintained anymore and there will be no further releases. For most of the cases you can use TabLayout instead of this library.

Interactive paging indicator widget, compatible with the ViewPager from the Android Support Library.

PagerSlidingTabStrip Sample Material ------ PagerSlidingTabStrip Sample Material

Usage

For a working implementation of this project see the sample/ folder.

  1. Include the following dependency in your build.gradle file.
compile 'com.jpardogo.materialtabstrip:library:1.1.1'

Or add the library as a project. I tried to send a pull request, but looks like the original developer doesn't maintain it anymore.

  1. Include the PagerSlidingTabStrip widget in your layout. This should usually be placed above the ViewPager it represents.
<com.astuetz.PagerSlidingTabStrip
    android:id="@+id/tabs"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:background="?attr/colorPrimary" />
  1. In your onCreate method (or onCreateView for a fragment), bind the widget to the ViewPager:
// Initialize the ViewPager and set an adapter
ViewPager pager = (ViewPager) findViewById(R.id.pager);
pager.setAdapter(new TestAdapter(getSupportFragmentManager()));

// Bind the tabs to the ViewPager
PagerSlidingTabStrip tabs = (PagerSlidingTabStrip) findViewById(R.id.tabs);
tabs.setViewPager(pager);

That's all you need to do, but if you want to use your own tabs, then...

  1. If your adapter implements the interface CustomTabProvider you can paste your custom tab view/s.

    • In case the the view returned contains the id R.id.psts_tab_title, this view should be a TextView and will be used to placed the title and set the view state (pressed/selected/default).

    • If you don't want the library manage your TextView title for the tab, use a different id than R.id.psts_tab_title in your tab layout.

    • The interface provide callbacks for selection and unselection of tabs as well.

    • If your adapter doesn't implement the interface CustomTabProvider the default tab will be used, which is a TextView with id R.id.psts_tab_title).

  2. (Optional) If you use an OnPageChangeListener with your view pager you should set it in the widget rather than on the pager directly.

// continued from above
tabs.setOnPageChangeListener(mPageChangeListener);

Customization

From theme:

  • android:textColorPrimary value (from your theme) will be applied automatically to the tab's text color (Selected tab with 255 alpha and non selected tabs with 150 alpha), underlineColor, dividerColor and indicatorColor, if the values are not defined on the xml layout.

Notes about some of the native attributes:

  • android:paddingLeft or android:paddingRight layout padding. If you apply both, they should be balanced. Check issue #69 for more information.

Custom attributes:

  • pstsIndicatorColor Color of the sliding indicator. textColorPrimary will be it's default color value.
  • pstsIndicatorHeightHeight of the sliding indicator.
  • pstsUnderlineColor Color of the full-width line on the bottom of the view. textColorPrimary will be it's default color value.
  • pstsUnderlineHeight Height of the full-width line on the bottom of the view.
  • pstsDividerColor Color of the dividers between tabs. textColorPrimary will be it's default color value.
  • pstsDividerWidth Stroke width of divider line, defaults to 0.
  • pstsDividerPadding Top and bottom padding of the dividers.
  • pstsShouldExpand If set to true, each tab is given the same weight, default false.
  • pstsScrollOffset Scroll offset of the selected tab.
  • pstsPaddingMiddle If true, the tabs start at the middle of the view (Like Newsstand google app).
  • pstsTabPaddingLeftRight Left and right padding of each tab.
  • pstsTabBackground Background drawable of each tab, should be a StateListDrawable.
  • pstsTabTextSize Tab text size (sp).
  • pstsTabTextColor Tab text color that can either be a color (text color won't changed) or a selector with a color per state: pressed (tab pressed), selected (tab active), default (active non active). The order of states in the selector is important. Check issue #68 for more information.
  • pstsTabTextStyle Set the text style, default normal on API 21, bold on older APIs.
  • pstsTabTextAllCaps If true, all tab titles will be upper case, default true.
  • pstsTabTextAlpha Set the text alpha transparency for non selected tabs. Range 0..255. 150 is it's default value. It WON'T be used if pstsTabTextColor is defined in the layout. If pstsTabTextColor is NOT defined, It will be applied to the non selected tabs.
  • pstsTabTextFontFamily Set the font family name. Default sans-serif-medium on API 21, sans-serif on older APIs.

Almost all attributes have their respective getters and setters to change them at runtime. To change dynamically pstsTabTextFontFamily and pstsTabTextStyle you can call:

  • public void setTypeface(Typeface typeface, int style). It can be used to define custom fonts in default tabs. Otherwise you can use custom tabs with CustomTabProvider.

Please open an issue if you find any are missing.

Developed By

Contributions

  • Please, read the README file before opening an issue, thanks.
  • Please, all the Pull Request must be sent to the dev branch, thanks..

Credits

License

Copyright 2013 Andreas Stuetz

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].