Skip to content

Instantly share code, notes, and snippets.

@komly
Created October 3, 2018 21:21
Show Gist options
  • Save komly/8a5e8fa1e8cd63aa16e01d8a4d52485a to your computer and use it in GitHub Desktop.
Save komly/8a5e8fa1e8cd63aa16e01d8a4d52485a to your computer and use it in GitHub Desktop.
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