Reputation: 5628
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
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