Search code examples
androiduser-interfaceandroid-recyclerviewandroid-coordinatorlayout

How to create sticky headers in RecyclerView like the picture attached?


enter image description here

I want to implement the title set at the top like the picture above and please be aware that I am using recyclerview like below. Can anyone have any idea?

<NestedScrollView>
  <TextView/>
  <RecyclerView/>
  <TextView/>
  <RecyclerView/>
</NestedScrollView>

Solution

  • To Achieve this, you have to pin your title text view. once the image is scrolled over this, then unpin your title. I suggest you, to use Sectioned RecyclerView Library.

    With Nested Recycler View & Item Decorator also you can develop like this.