Adding header and footer in recycler view.
Hey guys, have a happy sunday. Actually sunday finished. So let's celebrate the monday.
It's been very long days to written blog in android. Now It's a time. Because in between my flutter days, android also improved a lot.
How to add the header and footer in recyclerview?
Use ConcatAdapter to do that.
binding.listUser.adapter = ConcatAdapter(UserHeaderAdapter(context, data), UserAdapter(context, data),
UserFooterAdapter(context, data))
Comments