Created
February 28, 2015 08:22
-
-
Save mzgreen/a4f4fb043bc902e386c5 to your computer and use it in GitHub Desktop.
HidingScrollListener condition 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
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