flexbox-layout
flexbox-layout copied to clipboard
Question: how to use nested RecyclerView with Flexbox (without losing recycling functionality)?
Suppose I have a vertical RecyclerView with various items in it. One if the items should be a FlexBox one (using another RecyclerView), that goes from one row to the next. I've succeeded doing it, but it seems that as soon as I get to this nested RecyclerView, it creates all of its views, instead of recycling them. Is it possible to avoid this?
I tried to use a single RecyclerView (not nested), but due to limitations of this library (can't have an icon on the right, as I've asked here), I can't use this solution.
I've also tried to ask about this on StackOverflow, here.
Any update for the solution?