| 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
 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
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 
 | package com.example.demo.view.widget.stickynavlayout;
 import android.animation.ValueAnimator;
 import android.content.Context;
 import android.support.v4.view.NestedScrollingParent;
 import android.support.v4.view.ViewCompat;
 import android.support.v4.view.ViewPager;
 import android.support.v4.widget.SwipeRefreshLayout;
 import android.support.v7.widget.RecyclerView;
 import android.util.AttributeSet;
 import android.util.Log;
 import android.view.VelocityTracker;
 import android.view.View;
 import android.view.ViewConfiguration;
 import android.view.ViewGroup;
 import android.view.animation.Interpolator;
 import android.widget.LinearLayout;
 import android.widget.OverScroller;
 
 import com.example.demo.R;
 
 public class StickyNavLayout extends LinearLayout implements NestedScrollingParent {
 private static final String TAG = "StickyNavLayout";
 
 @Override
 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) {
 Log.e(TAG, "onStartNestedScroll");
 return true;
 }
 
 @Override
 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) {
 Log.e(TAG, "onNestedScrollAccepted");
 }
 
 @Override
 public void onStopNestedScroll(View target) {
 Log.e(TAG, "onStopNestedScroll");
 }
 
 @Override
 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) {
 Log.e(TAG, "onNestedScroll");
 }
 
 @Override
 public void onNestedPreScroll(View target, int dx, int dy, int[] consumed) {
 Log.e(TAG, "onNestedPreScroll");
 boolean hiddenTop = dy > 0 && getScrollY() < mTopViewHeight;
 boolean showTop = dy < 0 && getScrollY() >= 0 && !ViewCompat.canScrollVertically(target, -1);
 
 if (hiddenTop || showTop) {
 scrollBy(0, dy);
 consumed[1] = dy;
 }
 }
 
 private int TOP_CHILD_FLING_THRESHOLD = 3;
 
 @Override
 public boolean onNestedFling(View target, float velocityX, float velocityY, boolean consumed) {
 
 
 
 if ((target instanceof RecyclerView) && velocityY < 0) {
 final RecyclerView recyclerView = (RecyclerView) target;
 final View firstChild = recyclerView.getChildAt(0);
 final int childAdapterPosition = recyclerView.getChildAdapterPosition(firstChild);
 consumed = childAdapterPosition > TOP_CHILD_FLING_THRESHOLD;
 }
 if (!consumed) {
 animateScroll(velocityY, computeDuration(0), consumed);
 } else {
 animateScroll(velocityY, computeDuration(velocityY), consumed);
 }
 return true;
 }
 
 @Override
 public boolean onNestedPreFling(View target, float velocityX, float velocityY) {
 
 return false;
 }
 
 @Override
 public int getNestedScrollAxes() {
 Log.e(TAG, "getNestedScrollAxes");
 return 0;
 }
 
 
 
 
 
 
 
 private int computeDuration(float velocityY) {
 final int distance;
 if (velocityY > 0) {
 distance = Math.abs(mTop.getHeight() - getScrollY());
 } else {
 distance = Math.abs(mTop.getHeight() - (mTop.getHeight() - getScrollY()));
 }
 
 final int duration;
 velocityY = Math.abs(velocityY);
 if (velocityY > 0) {
 duration = 3 * Math.round(1000 * (distance / velocityY));
 } else {
 final float distanceRatio = (float) distance / getHeight();
 duration = (int) ((distanceRatio + 1) * 150);
 }
 
 return duration;
 
 }
 
 private void animateScroll(float velocityY, final int duration, boolean consumed) {
 final int currentOffset = getScrollY();
 final int topHeight = mTop.getHeight();
 if (mOffsetAnimator == null) {
 mOffsetAnimator = new ValueAnimator();
 mOffsetAnimator.setInterpolator(mInterpolator);
 mOffsetAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
 @Override
 public void onAnimationUpdate(ValueAnimator animation) {
 if (animation.getAnimatedValue() instanceof Integer) {
 scrollTo(0, (Integer) animation.getAnimatedValue());
 }
 }
 });
 } else {
 mOffsetAnimator.cancel();
 }
 mOffsetAnimator.setDuration(Math.min(duration, 600));
 
 if (velocityY >= 0) {
 mOffsetAnimator.setIntValues(currentOffset, topHeight);
 mOffsetAnimator.start();
 } else {
 
 if (!consumed) {
 mOffsetAnimator.setIntValues(currentOffset, 0);
 mOffsetAnimator.start();
 }
 
 }
 }
 
 private View mTop;
 private View mNav;
 private ViewPager mViewPager;
 
 private int mTopViewHeight;
 
 private OverScroller mScroller;
 private VelocityTracker mVelocityTracker;
 private ValueAnimator mOffsetAnimator;
 private Interpolator mInterpolator;
 private int mTouchSlop;
 private int mMaximumVelocity, mMinimumVelocity;
 
 private float mLastY;
 private boolean mDragging;
 
 public StickyNavLayout(Context context, AttributeSet attrs) {
 super(context, attrs);
 setOrientation(LinearLayout.VERTICAL);
 
 mScroller = new OverScroller(context);
 mTouchSlop = ViewConfiguration.get(context).getScaledTouchSlop();
 mMaximumVelocity = ViewConfiguration.get(context)
 .getScaledMaximumFlingVelocity();
 mMinimumVelocity = ViewConfiguration.get(context)
 .getScaledMinimumFlingVelocity();
 
 }
 
 private void initVelocityTrackerIfNotExists() {
 if (mVelocityTracker == null) {
 mVelocityTracker = VelocityTracker.obtain();
 }
 }
 
 private void recycleVelocityTracker() {
 if (mVelocityTracker != null) {
 mVelocityTracker.recycle();
 mVelocityTracker = null;
 }
 }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 @Override
 protected void onFinishInflate() {
 super.onFinishInflate();
 mTop = findViewById(R.id.id_stickynavlayout_topview);
 mNav = findViewById(R.id.id_stickynavlayout_indicator);
 View view = findViewById(R.id.id_stickynavlayout_viewpager);
 if (!(view instanceof ViewPager)) {
 throw new RuntimeException(
 "id_stickynavlayout_viewpager show used by ViewPager !");
 }
 mViewPager = (ViewPager) view;
 }
 
 @Override
 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
 
 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
 getChildAt(0).measure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
 ViewGroup.LayoutParams params = mViewPager.getLayoutParams();
 params.height = getMeasuredHeight() - mNav.getMeasuredHeight();
 setMeasuredDimension(getMeasuredWidth(), mTop.getMeasuredHeight() + mNav.getMeasuredHeight() + mViewPager.getMeasuredHeight());
 
 }
 
 @Override
 protected void onSizeChanged(int w, int h, int oldw, int oldh) {
 super.onSizeChanged(w, h, oldw, oldh);
 mTopViewHeight = mTop.getMeasuredHeight();
 Log.e("TTT", "height=" + mTopViewHeight);
 }
 
 public void fling(int velocityY) {
 mScroller.fling(0, getScrollY(), 0, velocityY, 0, 0, 0, mTopViewHeight);
 invalidate();
 }
 
 @Override
 public void scrollTo(int x, int y) {
 if (y < 0) {
 y = 0;
 }
 if (y > mTopViewHeight) {
 y = mTopViewHeight;
 }
 if (y != getScrollY()) {
 super.scrollTo(x, y);
 }
 }
 
 @Override
 public void computeScroll() {
 if (mScroller.computeScrollOffset()) {
 scrollTo(0, mScroller.getCurrY());
 invalidate();
 }
 }
 
 }
 
 
 |