You can Hide Appbar/Toolbar When Scroll Down.
If you need to disable it programtically under certain condition
// disabletoolbar.updateLayoutParams<AppBarLayout.LayoutParams> { scrollFlags = 0}// enabletoolbar.updateLayoutParams<AppBarLayout.LayoutParams> { scrollFlags = AppBarLayout.LayoutParams.SCROLL_FLAG_SCROLL or AppBarLayout.LayoutParams.SCROLL_FLAG_ENTER_ALWAYS}
NOTE: Using Android KTX
or
// disable - list is RecyclewView or NestedScrollViewViewCompat.setNestedScrollingEnabled(list, false)