Hey guys, Does any1 knows a lib that can bring sti...
# android
a
Hey guys, Does any1 knows a lib that can bring sticky headers functionality into a recyclerview? Implementations I have found so far use
ItemDecoration
which draws over the screen, so it doesn’t have accessibilty nor user interaction (in our case we want to make a chip carousel sticky for filtering). Some other implementations make a copy of the original view and attach it to the recyclerview’s parent, so in this case there is a need to handle two-way sync between original and sticky view. Any libs or ideas worth exploring?
c
This is not a general-purpose Android Slack channel, it’s specifically for support related to Kotlin as used in an Android app. There are other resources, such as StackOverflow or http://android-united.community/ which will better serve you for general Android help.
👍 1
c
Look at ConcatAdapter.
r
I believe I used this one years ago with success https://github.com/ShamylZakariya/StickyHeaders
a
@Robert Menke I will take a look into it. I will need to tweak it a bit to work with a GridLayoutManager but at least it doesn’t use
ItemDecoration
.