Created
February 28, 2015 08:18
-
-
Save mzgreen/3e867d8db87aa23aa376 to your computer and use it in GitHub Desktop.
HidingScrollListener class with snapping
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 abstract class HidingScrollListener extends RecyclerView.OnScrollListener { | |
private static final float HIDE_THRESHOLD = 10; | |
private static final float SHOW_THRESHOLD = 70; | |
private int mToolbarOffset = 0; | |
private boolean mControlsVisible = true; | |
private int mToolbarHeight; | |
public HidingScrollListener(Context context) { | |
mToolbarHeight = Utils.getToolbarHeight(context); | |
} | |
@Override | |
public void onScrollStateChanged(RecyclerView recyclerView, int newState) { | |
super.onScrollStateChanged(recyclerView, newState); | |
if(newState == RecyclerView.SCROLL_STATE_IDLE) { | |
if (mControlsVisible) { | |
if (mToolbarOffset > HIDE_THRESHOLD) { | |
setInvisible(); | |
} else { | |
setVisible(); | |
} | |
} else { | |
if ((mToolbarHeight - mToolbarOffset) > SHOW_THRESHOLD) { | |
setVisible(); | |
} else { | |
setInvisible(); | |
} | |
} | |
} | |
} | |
@Override | |
public void onScrolled(RecyclerView recyclerView, int dx, int dy) { | |
super.onScrolled(recyclerView, dx, dy); | |
clipToolbarOffset(); | |
onMoved(mToolbarOffset); | |
if((mToolbarOffset <mToolbarHeight && dy>0) || (mToolbarOffset >0 && dy<0)) { | |
mToolbarOffset += dy; | |
} | |
} | |
private void clipToolbarOffset() { | |
if(mToolbarOffset > mToolbarHeight) { | |
mToolbarOffset = mToolbarHeight; | |
} else if(mToolbarOffset < 0) { | |
mToolbarOffset = 0; | |
} | |
} | |
private void setVisible() { | |
if(mToolbarOffset > 0) { | |
onShow(); | |
mToolbarOffset = 0; | |
} | |
mControlsVisible = true; | |
} | |
private void setInvisible() { | |
if(mToolbarOffset < mToolbarHeight) { | |
onHide(); | |
mToolbarOffset = mToolbarHeight; | |
} | |
mControlsVisible = false; | |
} | |
public abstract void onMoved(int distance); | |
public abstract void onShow(); | |
public abstract void onHide(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment