Created
October 3, 2018 21:21
-
-
Save komly/8a5e8fa1e8cd63aa16e01d8a4d52485a to your computer and use it in GitHub Desktop.
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
protected void setScrollingEnabled(boolean isEnabled) { | |
AppBarLayout.LayoutParams params = (AppBarLayout.LayoutParams) toolbar.getLayoutParams(); | |
params.setScrollFlags(isEnabled ? (AppBarLayout.LayoutParams.SCROLL_FLAG_SCROLL | AppBarLayout.LayoutParams.SCROLL_FLAG_ENTER_ALWAYS) : 0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment