| 12
 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
 
 | package com.qingxiang.ui.view;
 import android.content.Context;
 import android.support.v4.view.PagerAdapter;
 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.LinearLayout;
 import android.widget.TextView;
 
 import com.qingxiang.ui.R;
 import com.qingxiang.ui.utils.DensityUtils;
 import com.qingxiang.ui.utils.Utils;
 
 
 
 
 public class TabInject extends FrameLayout implements ViewPager.OnPageChangeListener {
 
 private static final String TAG = "TabInject";
 private LinearLayout continar;
 private PagerAdapter mAdapter;
 private View line;
 private int curPage;
 private ViewPager mViewPager;
 private TextView lastSelectChild;
 private int lineWidth;
 
 public TabInject(Context context) {
 this(context, null);
 }
 
 public TabInject(Context context, AttributeSet attrs) {
 this(context, attrs, 0);
 }
 
 public TabInject(Context context, AttributeSet attrs, int defStyleAttr) {
 super(context, attrs, defStyleAttr);
 init();
 }
 
 private void init() {
 
 continar = new LinearLayout(getContext());
 addView(continar, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
 ViewGroup.LayoutParams.MATCH_PARENT));
 }
 
 public void setAdapter(ViewPager vp, PagerAdapter adapter) {
 mAdapter = adapter;
 mViewPager = vp;
 curPage = mViewPager.getCurrentItem();
 int count = mAdapter.getCount();
 
 lineWidth = Utils.getScreenWidth() / count;
 int lineHeight = DensityUtils.dp2px(getContext(), 2);
 
 line = new View(getContext());
 line.setBackgroundColor(getResources().getColor(R.color.colorPrimary));
 FrameLayout.LayoutParams lineParams
 = new FrameLayout.LayoutParams(lineWidth, lineHeight);
 lineParams.gravity = Gravity.BOTTOM;
 addView(line, lineParams);
 
 
 for (int i = 0; i < count; i++) {
 TextView tv = new TextView(getContext());
 LinearLayout.LayoutParams
 params = new LinearLayout.LayoutParams(0, LinearLayout.LayoutParams.MATCH_PARENT);
 params.weight = 1;
 tv.setGravity(Gravity.TOP | Gravity.CENTER_HORIZONTAL);
 tv.setText(mAdapter.getPageTitle(i));
 
 if (curPage == i) {
 tv.setTextColor(getResources().getColor(R.color.colorPrimary));
 lastSelectChild = tv;
 } else
 tv.setTextColor(getResources().getColor(R.color.middleDark));
 
 tv.setBackgroundColor(getResources().getColor(R.color.alpha));
 tv.setTextSize(TypedValue.COMPLEX_UNIT_SP, 14);
 
 final int finalI = i;
 tv.setOnClickListener(v -> {
 mViewPager.setCurrentItem(finalI);
 });
 continar.addView(tv, params);
 }
 mViewPager.addOnPageChangeListener(this);
 }
 
 @Override
 protected void onDetachedFromWindow() {
 super.onDetachedFromWindow();
 mViewPager.removeOnPageChangeListener(this);
 }
 
 @Override
 public void onPageScrolled(int pos, float off, int offPx) {
 
 int moveX = (int) (lineWidth * off);
 LayoutParams layoutParams = (LayoutParams) line.getLayoutParams();
 layoutParams.leftMargin = (pos * lineWidth) + moveX;
 
 int dX = layoutParams.leftMargin - (pos * lineWidth);
 
 if (dX > 0 && dX <= 1) {
 layoutParams.leftMargin = (pos * lineWidth);
 }
 
 if (dX < lineWidth && dX >= (lineWidth - 1)) {
 layoutParams.leftMargin = (pos + 1) * lineWidth;
 }
 
 line.setLayoutParams(layoutParams);
 }
 
 @Override
 public void onPageSelected(int position) {
 
 
 
 TextView tv = (TextView) continar.getChildAt(position);
 lastSelectChild.setTextColor(getResources().getColor(R.color.middleDark));
 tv.setTextColor(getResources().getColor(R.color.colorPrimary));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 lastSelectChild = tv;
 curPage = position;
 }
 
 @Override
 public void onPageScrollStateChanged(int state) {
 
 }
 }
 
 |