转载请注明本文出自Cym的博客(http://blog.csdn.net/cym492224103),谢谢支持!
前言
最近工作比较忙,所以现在才更新博文,对不住大家了~!言归正传,我们来说说这个PagerSlidingTabStrip,它是配合ViewPager使用的导航栏,网易新闻就是用的这个导航,我们仔细观察这个导航栏不仅他是跟着ViewPager滑动而滑动,而且指示器还会随着标题的长度而动态的变化长度。
·
下载地址:
Github:https://github.com/astuetz/PagerSlidingTabStrip
CSDN:http://download.csdn.net/detail/cym492224103/8413393
在分析源码的前一个步骤,我们先学会如何使用:
1.把项目源码下载下来导入工程,可以看到
library为引用工程,再看看如何使用PagerSlidingTabStrip。
2.在布局文件配置:
- <com.astuetz.PagerSlidingTabStrip
- android:id="@+id/tabs"
- android:layout_width="match_parent"
- android:layout_height="48dip"
- android:background="@drawable/background_tabs" />
3.获取PagerSlidingTabStrip控件,绑定ViewPager
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
- tabs = (PagerSlidingTabStrip) findViewById(R.id.tabs);
- pager = (ViewPager) findViewById(R.id.pager);
- adapter = new MyPagerAdapter(getSupportFragmentManager());
- pager.setAdapter(adapter);
- final int pageMargin = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 4, getResources()
- .getDisplayMetrics());
- pager.setPageMargin(pageMargin);
- tabs.setViewPager(pager);
- changeColor(currentColor);
- }
它还提供了很多方法来让开发者更好的使用它来完成自己想要的风格:
pstsIndicatorColor
滑动指示器颜色pstsUnderlineColor
视图的底部的全宽线的颜色pstsDividerColor
选项卡之间的分隔线的颜色pstsIndicatorHeight
滑动指标高度pstsUnderlineHeight
视图的底部高度的全宽线pstsDividerPadding
顶部和分频器的底部填充pstsTabPaddingLeftRight
左,每个选项卡的右填充pstsScrollOffset
所选选项卡的滚动偏移量pstsTabBackground
每个标签的背景可拉伸,应该是一个StateListDrawablepstsShouldExpand
如果设置为true,每个选项卡被赋予了相同的权重,默认为falsepstsTextAllCaps
如果为true,所有的选项卡标题将是大写,默认为true
所有属性都有各自的getter和setter方法在运行时改变它们
源码分析:学习完使用之后我们就来解开它的神秘面纱,带着问题我们来看看它到底是如何实现的。
1.引用工程目录结构
就一个PagerSlidingTabStrip类,比起我之前分析过的ResideMenu要容易一些。
2.看继承体系
- public class PagerSlidingTabStrip extends HorizontalScrollView
3.看构造方法
- public PagerSlidingTabStrip(Context context, AttributeSet attrs, int defStyle) {
- super(context, attrs, defStyle);
- setFillViewport(true);
- setWillNotDraw(false);
- tabsContainer = new LinearLayout(context);
- tabsContainer.setOrientation(LinearLayout.HORIZONTAL);
- tabsContainer.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
- addView(tabsContainer);
- DisplayMetrics dm = getResources().getDisplayMetrics();
- scrollOffset = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, scrollOffset, dm);
- indicatorHeight = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, indicatorHeight, dm);
- underlineHeight = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, underlineHeight, dm);
- dividerPadding = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dividerPadding, dm);
- tabPadding = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, tabPadding, dm);
- dividerWidth = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dividerWidth, dm);
- tabTextSize = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, tabTextSize, dm);
- // get system attrs (android:textSize and android:textColor)
- TypedArray a = context.obtainStyledAttributes(attrs, ATTRS);
- tabTextSize = a.getDimensionPixelSize(0, tabTextSize);
- tabTextColor = a.getColor(1, tabTextColor);
- a.recycle();
- // get custom attrs
- a = context.obtainStyledAttributes(attrs, R.styleable.PagerSlidingTabStrip);
- indicatorColor = a.getColor(R.styleable.PagerSlidingTabStrip_pstsIndicatorColor, indicatorColor);
- underlineColor = a.getColor(R.styleable.PagerSlidingTabStrip_pstsUnderlineColor, underlineColor);
- dividerColor = a.getColor(R.styleable.PagerSlidingTabStrip_pstsDividerColor, dividerColor);
- indicatorHeight = a.getDimensionPixelSize(R.styleable.PagerSlidingTabStrip_pstsIndicatorHeight, indicatorHeight);
- underlineHeight = a.getDimensionPixelSize(R.styleable.PagerSlidingTabStrip_pstsUnderlineHeight, underlineHeight);
- dividerPadding = a.getDimensionPixelSize(R.styleable.PagerSlidingTabStrip_pstsDividerPadding, dividerPadding);
- tabPadding = a.getDimensionPixelSize(R.styleable.PagerSlidingTabStrip_pstsTabPaddingLeftRight, tabPadding);
- tabBackgroundResId = a.getResourceId(R.styleable.PagerSlidingTabStrip_pstsTabBackground, tabBackgroundResId);
- shouldExpand = a.getBoolean(R.styleable.PagerSlidingTabStrip_pstsShouldExpand, shouldExpand);
- scrollOffset = a.getDimensionPixelSize(R.styleable.PagerSlidingTabStrip_pstsScrollOffset, scrollOffset);
- textAllCaps = a.getBoolean(R.styleable.PagerSlidingTabStrip_pstsTextAllCaps, textAllCaps);
- a.recycle();
- rectPaint = new Paint();
- rectPaint.setAntiAlias(true);
- rectPaint.setStyle(Style.FILL);
- dividerPaint = new Paint();
- dividerPaint.setAntiAlias(true);
- dividerPaint.setStrokeWidth(dividerWidth);
- defaultTabLayoutParams = new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.MATCH_PARENT);
- expandedTabLayoutParams = new LinearLayout.LayoutParams(0, LayoutParams.MATCH_PARENT, 1.0f);
- if (locale == null) {
- locale = getResources().getConfiguration().locale;
- }
- }
1.生成了一个横向的LinearLayout
2.初始化数值(如:tab边距、tab字体大小等等)
3.获取布局文件的配置属性,因此我们就知道了,它不仅暴露了方法可以设置这些参数,而且还可以通过配置布局文件设置这些参数。(如:tab边距、tab字体大小等等)
4.创建了两个画笔,一个是标题的分割线用的,一个是画指示器用的。
5.创建两个Tabl的LinearLayout.LayoutParams,一个为默认的(宽度随内容长度),一个为扩展的(宽度比例都一致)。
4.看一下绑定ViewPager里面它做了什么?
- public void setViewPager(ViewPager pager) {
- this.pager = pager;
- if (pager.getAdapter() == null) {
- throw new IllegalStateException("ViewPager does not have adapter instance.");
- }
- pager.setOnPageChangeListener(pageListener);
- notifyDataSetChanged();
- }
接下来在看看notifyDataSetChanged这个方法里面做了什么?
- public void notifyDataSetChanged() {
- tabsContainer.removeAllViews();
- tabCount = pager.getAdapter().getCount();
- for (int i = 0; i < tabCount; i++) {
- if (pager.getAdapter() instanceof IconTabProvider) {
- addIconTab(i, ((IconTabProvider) pager.getAdapter()).getPageIconResId(i));
- } else {
- addTextTab(i, pager.getAdapter().getPageTitle(i).toString());
- }
- }
- updateTabStyles();
- getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
- @SuppressWarnings("deprecation")
- @SuppressLint("NewApi")
- @Override
- public void onGlobalLayout() {
- if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) {
- getViewTreeObserver().removeGlobalOnLayoutListener(this);
- } else {
- getViewTreeObserver().removeOnGlobalLayoutListener(this);
- }
- currentPosition = pager.getCurrentItem();
- scrollToChild(currentPosition, 0);
- }
- });
- }
pager设置了一个监听,看看监听里面做了什么?
- private class PageListener implements OnPageChangeListener {
- @Override
- public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
- currentPosition = position;
- currentPositionOffset = positionOffset;
- scrollToChild(position, (int) (positionOffset * tabsContainer.getChildAt(position).getWidth()));
- invalidate();
- if (delegatePageListener != null) {
- delegatePageListener.onPageScrolled(position, positionOffset, positionOffsetPixels);
- }
- }
- @Override
- public void onPageScrollStateChanged(int state) {
- if (state == ViewPager.SCROLL_STATE_IDLE) {
- scrollToChild(pager.getCurrentItem(), 0);
- }
- if (delegatePageListener != null) {
- delegatePageListener.onPageScrollStateChanged(state);
- }
- }
- @Override
- public void onPageSelected(int position) {
- if (delegatePageListener != null) {
- delegatePageListener.onPageSelected(position);
- }
- }
- }
观察onPageScrolled(当页面在滑动的时候会调用此方法)方法里面做了什么,
1.改变当前滑动位置。(在此就实现了滑动下面的ViewPager,同时导航也在跟随这ViewPager滑动而滑动)
2.调用invalidate方法。(invalidate则会调用onDraw,所以看看它在做什么)
- @Override
- protected void onDraw(Canvas canvas) {
- super.onDraw(canvas);
- if (isInEditMode() || tabCount == 0) {
- return;
- }
- final int height = getHeight();
- // draw indicator line
- rectPaint.setColor(indicatorColor);
- // default: line below current tab
- View currentTab = tabsContainer.getChildAt(currentPosition);
- float lineLeft = currentTab.getLeft();
- float lineRight = currentTab.getRight();
- // if there is an offset, start interpolating left and right coordinates between current and next tab
- if (currentPositionOffset > 0f && currentPosition < tabCount - 1) {
- View nextTab = tabsContainer.getChildAt(currentPosition + 1);
- final float nextTabLeft = nextTab.getLeft();
- final float nextTabRight = nextTab.getRight();
- lineLeft = (currentPositionOffset * nextTabLeft + (1f - currentPositionOffset) * lineLeft);
- lineRight = (currentPositionOffset * nextTabRight + (1f - currentPositionOffset) * lineRight);
- }
- canvas.drawRect(lineLeft, height - indicatorHeight, lineRight, height, rectPaint);
- // draw underline
- rectPaint.setColor(underlineColor);
- canvas.drawRect(0, height - underlineHeight, tabsContainer.getWidth(), height, rectPaint);
- // draw divider
- dividerPaint.setColor(dividerColor);
- for (int i = 0; i < tabCount - 1; i++) {
- View tab = tabsContainer.getChildAt(i);
- canvas.drawLine(tab.getRight(), dividerPadding, tab.getRight(), height - dividerPadding, dividerPaint);
- }
- }
1.绘制标题的分割线
2.绘制指示器。
这样就实现了跟随ViewPager滑动而滑动,而且指示器还会随着标题的长度而动态的变化长度的效果了。
6.我们来看看它暴露的方法是怎么写的:
- public void setIndicatorColor(int indicatorColor) {
- this.indicatorColor = indicatorColor;
- invalidate();
- }
- public void setIndicatorColorResource(int resId) {
- this.indicatorColor = getResources().getColor(resId);
- invalidate();
- }
- public int getIndicatorColor() {
- return this.indicatorColor;
- }
- public void setIndicatorHeight(int indicatorLineHeightPx) {
- this.indicatorHeight = indicatorLineHeightPx;
- invalidate();
- }
- public int getIndicatorHeight() {
- return indicatorHeight;
- }
- public void setUnderlineColor(int underlineColor) {
- this.underlineColor = underlineColor;
- invalidate();
- }
- public void setUnderlineColorResource(int resId) {
- this.underlineColor = getResources().getColor(resId);
- invalidate();
- }
- public int getUnderlineColor() {
- return underlineColor;
- }
- public void setDividerColor(int dividerColor) {
- this.dividerColor = dividerColor;
- invalidate();
- }
- public void setDividerColorResource(int resId) {
- this.dividerColor = getResources().getColor(resId);
- invalidate();
- }
- public int getDividerColor() {
- return dividerColor;
- }
- public void setUnderlineHeight(int underlineHeightPx) {
- this.underlineHeight = underlineHeightPx;
- invalidate();
- }
- public int getUnderlineHeight() {
- return underlineHeight;
- }
- public void setDividerPadding(int dividerPaddingPx) {
- this.dividerPadding = dividerPaddingPx;
- invalidate();
- }
- public int getDividerPadding() {
- return dividerPadding;
- }
- public void setScrollOffset(int scrollOffsetPx) {
- this.scrollOffset = scrollOffsetPx;
- invalidate();
- }
- public int getScrollOffset() {
- return scrollOffset;
- }
- public void setShouldExpand(boolean shouldExpand) {
- this.shouldExpand = shouldExpand;
- requestLayout();
- }
- public boolean getShouldExpand() {
- return shouldExpand;
- }
- public boolean isTextAllCaps() {
- return textAllCaps;
- }
- public void setAllCaps(boolean textAllCaps) {
- this.textAllCaps = textAllCaps;
- }
- public void setTextSize(int textSizePx) {
- this.tabTextSize = textSizePx;
- updateTabStyles();
- }
- public int getTextSize() {
- return tabTextSize;
- }
- public void setTextColor(int textColor) {
- this.tabTextColor = textColor;
- updateTabStyles();
- }
- public void setTextColorResource(int resId) {
- this.tabTextColor = getResources().getColor(resId);
- updateTabStyles();
- }
- public int getTextColor() {
- return tabTextColor;
- }
- public void setTypeface(Typeface typeface, int style) {
- this.tabTypeface = typeface;
- this.tabTypefaceStyle = style;
- updateTabStyles();
- }
- public void setTabBackground(int resId) {
- this.tabBackgroundResId = resId;
- }
- public int getTabBackground() {
- return tabBackgroundResId;
- }
- public void setTabPaddingLeftRight(int paddingPx) {
- this.tabPadding = paddingPx;
- updateTabStyles();
- }
- public int getTabPaddingLeftRight() {
- return tabPadding;
- }
7.除此之外它还做了一些细节上的处理,如:Activity销毁的时候,它还保存了当前的选择标题的坐标,这样就可以防止横竖屏导致Activity销毁而引起选择器位置重置的问题,来看看代码吧~!
- @Override
- public void onRestoreInstanceState(Parcelable state) {
- SavedState savedState = (SavedState) state;
- super.onRestoreInstanceState(savedState.getSuperState());
- currentPosition = savedState.currentPosition;
- requestLayout();
- }
- @Override
- public Parcelable onSaveInstanceState() {
- Parcelable superState = super.onSaveInstanceState();
- SavedState savedState = new SavedState(superState);
- savedState.currentPosition = currentPosition;
- return savedState;
- }
- static class SavedState extends BaseSavedState {
- int currentPosition;
- public SavedState(Parcelable superState) {
- super(superState);
- }
- private SavedState(Parcel in) {
- super(in);
- currentPosition = in.readInt();
- }
- @Override
- public void writeToParcel(Parcel dest, int flags) {
- super.writeToParcel(dest, flags);
- dest.writeInt(currentPosition);
- }
- public static final Parcelable.Creator<SavedState> CREATOR = new Parcelable.Creator<SavedState>() {
- @Override
- public SavedState createFromParcel(Parcel in) {
- return new SavedState(in);
- }
- @Override
- public SavedState[] newArray(int size) {
- return new SavedState[size];
- }
- };
- }