MaterialTabsListScrolling
MaterialTabsListScrolling copied to clipboard
How to Hide only faketab on scrollup? I need Toolbar to be stationary. In my case faketab is SlidingTabLayout.
If you want the toolbar the be stationary, the easiest thing to do is to simply use a LinearLayout and put the two views (Toolbar and SlidingTabLayout) on top of each other. If you're using the code from this repo, you'll probably need to do use the SlidingTabLayout instead of the Toolbar in various sections of the code. PS: There's an 'official' replacement for the SlidingTabLayout, namely the TabLayout of the Design Support Library by Google. Good luck!