SuperRecyclerView
SuperRecyclerView copied to clipboard
Adding Header
Is there any advised way to add a header (not a sticky header that scrolls down, but a header that minimizes on scroll down, that also doesn't kill the pull to refresh)
Hi @kunalgyl,
that sounds like a component that should not be inside RecyclerView layout.
I think you could check out the latest support design library, maybe CoordinatorLayout can help you. Another way is doing this manually: listen for scroll events via setOnScrollListener
and move the header accordingly.