1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
| package com.feparty.tbh.view;
import android.content.Context; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.support.v4.view.ViewPager; import android.util.AttributeSet; import android.util.TypedValue; import android.view.Gravity; import android.view.View; import android.view.ViewGroup; import android.widget.FrameLayout; import android.widget.TextView;
import com.feparty.tbh.R; import com.feparty.tbh.common.Loger; import com.feparty.tbh.utils.DensityUtil;
/** * Created by gloomy on 17-10-31. */
public class MyTabLayout extends FrameLayout implements ViewPager.OnPageChangeListener {
private static final String TAG = "MyTabLayout"; private static final String[] titles = {"+好友", "圈子", "消息", "投票", "我", "设置"};
private ViewPager mViewPager; private TextView[] tabs; private int height; private int width; private int tabWidth; private int centerMargin; private int leftMargin; private int rightMargin; private int currenItem; //当前的位置 private int moveSize;
public MyTabLayout(@NonNull Context context) { this(context, null); }
public MyTabLayout(@NonNull Context context, @Nullable AttributeSet attrs) { this(context, attrs, 0); }
public MyTabLayout(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr);
//有6个tab float size = getContext().getResources().getDimension(R.dimen.titleSize); tabWidth = (int) (size * 3);
tabs = new TextView[titles.length]; for (int i = 0; i < titles.length; i++) { tabs[i] = new TextView(context); tabs[i].setText(titles[i]); tabs[i].setTextSize(TypedValue.COMPLEX_UNIT_PX, size); tabs[i].setGravity(Gravity.CENTER); FrameLayout.LayoutParams layoutParams = new FrameLayout.LayoutParams(tabWidth, ViewGroup.LayoutParams.MATCH_PARENT); addView(tabs[i], layoutParams); tabs[i].setVisibility(GONE); } }
@Override protected void onFinishInflate() { super.onFinishInflate(); width = DensityUtil.getScreenWidth(); height = DensityUtil.getActionBarHeight(); Loger.E(TAG, "width:" + width + "---height:" + height);
//中间点 左边 右边的leftMargin值: centerMargin = (width / 2) - (tabWidth / 2); leftMargin = DensityUtil.dip2px(16); rightMargin = width - DensityUtil.dip2px(16) - tabWidth;
//move size moveSize = centerMargin - leftMargin;
}
/** * 设置当前显示的是第几个 * * @param currenItem */ public void setCurrentItem(int currenItem) { this.currenItem = currenItem;
tabs[currenItem].setVisibility(VISIBLE); LayoutParams layoutParams = (LayoutParams) tabs[currenItem].getLayoutParams(); layoutParams.leftMargin = centerMargin;
if (currenItem > 0) { //存在左边 tabs[currenItem - 1].setVisibility(VISIBLE); tabs[currenItem - 1].setAlpha(0.5f); layoutParams = (LayoutParams) tabs[currenItem - 1].getLayoutParams(); layoutParams.leftMargin = leftMargin; }
if (currenItem <= titles.length - 2) { //存在右边 tabs[currenItem + 1].setVisibility(VISIBLE); tabs[currenItem + 1].setAlpha(0.5f); layoutParams = (LayoutParams) tabs[currenItem + 1].getLayoutParams(); layoutParams.leftMargin = rightMargin; } }
/** * 设置绑定的ViewPager * * @param mViewPager */ public void setViewPager(ViewPager mViewPager) { this.mViewPager = mViewPager; for (int i = 0; i < titles.length; i++) { int finalI = i; tabs[i].setOnClickListener(v -> { mViewPager.setCurrentItem(finalI); }); } postDelayed(() -> { mViewPager.addOnPageChangeListener(this); }, 1000); }
@Override public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) { Loger.E(TAG, "scroll " + ",position:" + position + "|offset:" + positionOffset + "|offsetpx:" + positionOffsetPixels); TextView tab1 = tabs[position]; tab1.setVisibility(VISIBLE); LayoutParams params = (LayoutParams) tab1.getLayoutParams(); params.leftMargin = (int) (leftMargin + (moveSize * (1 - positionOffset))); tab1.setAlpha(.5f + (.5f * (1.0f - positionOffset))); tab1.setLayoutParams(params);
if (position < titles.length - 1) { //存在右边的 TextView tab2 = tabs[position + 1]; tab2.setVisibility(VISIBLE); params = (LayoutParams) tab2.getLayoutParams(); params.leftMargin = (int) (rightMargin - (moveSize * positionOffset)); tab2.setAlpha(.5f + (.5f * positionOffset)); tab2.setLayoutParams(params); }
if (position > 0) { //存在左边的 TextView tab3 = tabs[position - 1]; tab3.setVisibility(VISIBLE); params = (LayoutParams) tab3.getLayoutParams(); params.leftMargin = (int) (leftMargin - (moveSize * positionOffset)); Loger.E(TAG, "left:" + params.leftMargin); if (params.leftMargin >= -tabWidth) { tab3.setVisibility(VISIBLE); } else { tab3.setVisibility(GONE); } tab3.setAlpha(.5f * (1.0f - positionOffset)); tab3.setLayoutParams(params); }
if (position < titles.length - 2) { //存在最右边的 TextView tab4 = tabs[position + 2]; tab4.setVisibility(VISIBLE); params = (LayoutParams) tab4.getLayoutParams(); params.leftMargin = (int) (rightMargin + (moveSize * (1 - positionOffset))); if (params.leftMargin <= width + tabWidth) { tab4.setVisibility(VISIBLE); } else { tab4.setVisibility(GONE); } tab4.setAlpha(.5f * positionOffset); tab4.setLayoutParams(params); } }
@Override public void onPageSelected(int position) { currenItem = position; }
@Override public void onPageScrollStateChanged(int state) { }
public void onDestroy() { mViewPager.removeOnPageChangeListener(this); mViewPager = null; } }
|