Hi everyone,
I have just released a new library for generating RecyclerView adapters using annotations. If you hate writing your adapter over and over just have a look at it and tell me what's your opinion: https://github.com/PsHegger/recycleradapter-generator
👍 3
f
fengdai
11/07/2019, 2:16 AM
Very happy to see that I’m not the only one who doesn’t like to write RecyclerView adapter and tries to make it easier. 😂 I also wrote a library about it, but in a different way: https://github.com/fengdai/registry
c
Christophe Smet
11/07/2019, 12:22 PM
Can’t you do all that with just simple custom views as listitems.. ?
f
fengdai
11/07/2019, 12:27 PM
Which library are you talking about? Gergely’s or mine? @Christophe Smet
c
Christophe Smet
11/07/2019, 12:28 PM
No library, just in general. Wouldn’t it be easier to map models (listitems) to a layout. Inflate it and bind it ? Then you don’t need annotations etc.