Hey guys,
i need a suggestion regarding concept of recycle view… I’m little bit confused regarding as as there are lots of guys with different definition for recycle view…
So is the image give below defines the Recycler view to be correct?
If yes then will it be good to work on it as i have a method logic is not 100% ready but no. of arrangement can be decreased… for example
Suppose i have a list item that takes 5 components(1 Card, 1 Image, 2 label and 1 icon /logo/any option)
So if we make list view of 100 list item then
Without Recycler view we need
100 * 5 = 500 Arrangement
According to my method if recycling 15 card then it will need
100 + 15*6 = 190 arrangement
means saved total 310 arrangements
also if we have youtube video like card then we can use 5 card to recycle that mean
100 + 5*6 = 130
saved over 370 arrangements
Is that decrease in number of arrangement enough?