Created
December 9, 2016 18:43
-
-
Save ultraon/3570681d890c4f070b41c5b4a4fe7ecd to your computer and use it in GitHub Desktop.
Bouncable HorizontalScrollView
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class HorizontalOverScrollView extends HorizontalScrollView { | |
private static final int WIDTH_DEVIDER_OVERSCROLL_DISTANCE = 3; | |
private TimeInterpolator mInterpolator; | |
private int mMaxOverscrollDistance; | |
private int mAnimTime; | |
private long mStartTime; | |
/** | |
* Instantiates {@link HorizontalOverScrollView} object. | |
*/ | |
public HorizontalOverScrollView(final Context context) { | |
super(context); | |
init(); | |
} | |
/** | |
* Instantiates {@link HorizontalOverScrollView} object. | |
*/ | |
public HorizontalOverScrollView(final Context context, final AttributeSet attrs) { | |
super(context, attrs); | |
init(); | |
} | |
/** | |
* Instantiates {@link HorizontalOverScrollView} object. | |
*/ | |
public HorizontalOverScrollView(final Context context, final AttributeSet attrs, final int defStyleAttr) { | |
super(context, attrs, defStyleAttr); | |
init(); | |
} | |
private void init() { | |
final int widthPixels = getContext().getResources().getDisplayMetrics().widthPixels; | |
mMaxOverscrollDistance = widthPixels / WIDTH_DEVIDER_OVERSCROLL_DISTANCE; | |
mAnimTime = getContext().getResources().getInteger(android.R.integer.config_mediumAnimTime); | |
mInterpolator = new DecelerateInterpolator(); | |
} | |
@Override | |
protected boolean overScrollBy(int deltaX, int deltaY, int scrollX, int scrollY, int scrollRangeX, int scrollRangeY, int maxOverScrollX, int maxOverScrollY, boolean isTouchEvent) { | |
int overScrollDistance = mMaxOverscrollDistance; | |
if (isTouchEvent) { | |
mStartTime = AnimationUtils.currentAnimationTimeMillis(); | |
} else { | |
final long elapsedTime = AnimationUtils.currentAnimationTimeMillis() - mStartTime; | |
float interpolation = mInterpolator.getInterpolation((float) elapsedTime / mAnimTime); | |
interpolation = interpolation > 1 ? 1 : interpolation; | |
overScrollDistance -= overScrollDistance * interpolation; | |
overScrollDistance = overScrollDistance < 0 ? 0 : overScrollDistance; | |
} | |
return super.overScrollBy(deltaX, deltaY, scrollX, scrollY, scrollRangeX, scrollRangeY, overScrollDistance, maxOverScrollY, isTouchEvent); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment