Malinskiy / SuperRecyclerView

Pumped up RecyclerView
2.63k stars 469 forks source link

Adding Header #52

Open kunalgyl opened 9 years ago

kunalgyl commented 9 years ago

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)

Malinskiy commented 9 years ago

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.