I've noticed that the new RecyclerView class, even though it makes things a bit cleaner, is lacking a lot of functionality that I'm familiar with:
- dividers, but this can be solved by looking at this post or this one
- "footerDividersEnabled"
- "headerDividersEnabled"
- "listSelector" , but maybe I should simply set it per view ?
- "fastScrollEnabled"
- "smoothScrollbar"
- "textFilterEnabled"
- I've also tried to find out if there is a new way to use the new class with filtering (as done with ListView by implementing Filterable). I couldn't find out if there is such a thing
- "tools:listitem" , to show the items on the UI designer.
Those are what I use, but maybe there are others that I missed.
Is there any tutorial or some guidelines of how to replace each of those things?