I'm trying to implement section headers in my RecyclerGrid in Android. I came across SuperSLiM which basically has all the functions I need.
Now the problem is, in my opinion, it's badly documented how to really implement this so that it's working. I was reading through the given example, but it's full of functions where I only partly understand what they do.
My own implementation of SuperSliM worked so far as it was showing the headers and the custom views that I use as items, but it was crazily messed up while scrolling. (items where shown multiple times, headers went on items and so forth)
My simple question is, can someone provide me a simple and understandable example of how to implement the SuperSLiM manager (as Grid Manager) into my RecyclerView? Also if there is a better alternative I would appreciate any help.
If it's not clear to you on how my layout should look like I have an example image below:
Important to mention is, that my items are not just simple TextViews but comparable to a CardView.
Thanks a lot in advance!