In the design support Library (from I/O) Google introduced the AppBarLayout. I\'m trying to make the Toolbar animate out of the screen when the user scrolls through a website in
Thanks to @torque203 for providing this answer. I'm reposting this to gather more attention to it.
You can extend webview and implement NestedScrollingChild. For example, you can use the NestedWebView object found in this Github project.
From there on, you can act like it's a normal View that supports Nested Scrolling, like a RecyclerView:
In my use case, this worked fine.
Again, credits to @torque203 for finding this Github project.