Skip to content

Instantly share code, notes, and snippets.

@mzgreen
Created February 28, 2015 08:22
Show Gist options
  • Save mzgreen/a4f4fb043bc902e386c5 to your computer and use it in GitHub Desktop.
Save mzgreen/a4f4fb043bc902e386c5 to your computer and use it in GitHub Desktop.
HidingScrollListener condition snapping
if (mControlsVisible) {
if (mToolbarOffset > HIDE_THRESHOLD) {
setInvisible();
} else {
setVisible();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment