We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To enable hide action bar (or Tab bar) while scrolling the list we need to change the Toolbar's LinearLayout parent to AppBarLayout !!!
Error becouse of LinearLayout :
AppBarLayout.LayoutParams params = (AppBarLayout.LayoutParams) this.getToolbar().getLayoutParams(); params.setScrollFlags(AppBarLayout.LayoutParams.SCROLL_FLAG_SCROLL | AppBarLayout.LayoutParams.SCROLL_FLAG_ENTER_ALWAYS);
this is the programmatic way but fails ending up error!!
java.lang.ClassCastException: android.widget.LinearLayout$LayoutParams cannot be cast to android.support.design.widget.AppBarLayout$LayoutParams
LinearLayout parent should be replaced to AppBarLayout!!
#88
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To enable hide action bar (or Tab bar) while scrolling the list we need to change the Toolbar's LinearLayout parent to AppBarLayout !!!
Error becouse of LinearLayout :
this is the programmatic way but fails ending up error!!
LinearLayout parent should be replaced to AppBarLayout!!
#88
The text was updated successfully, but these errors were encountered: