Home > database >  What the best way to creat Expandable Recyclerview Android/Java?
What the best way to creat Expandable Recyclerview Android/Java?

Time:06-02

Please tell me how can I create Expandable Recyclerview with Groups items and his Childs items. Now i am searching for the best way to creat expandable recyclerview, because i have tried AnimatedExpandableListView librari and i found some bugs.

I will be very grateful if you show me some examples!

CodePudding user response:

implementation 'com.github.cachapa:ExpandableLayout:2.9.2'

try this I'm using this library currently inside the app that I'm working on, it's simple easy to use and works fine, let me know if you try it !!

CodePudding user response:

that's how I'm using it in my application this card view is inside a recycler view and there's another recycler view inside this card view which I'm expanding and collapsing on arrow image click when layout is collapsed

when layout is expanded

  • Related