rahul.ramanujam
rahul.ramanujam

Reputation: 5628

RecylerView with a fixed first row as header

I would like to create a recycler view with a fixed first row, which should act as the header. Also ,how can I prevent it from scrolling with other row elements ?

Upvotes: 3

Views: 4752

Answers (1)

CommonsWare
CommonsWare

Reputation: 1007584

Don't put your fixed header in the RecyclerView. Wrap the RecyclerView in a vertical LinearLayout, with your fixed header above it.

Upvotes: 11

Related Questions