-1

I understand and read this post about the differences between LV and RV. This all makes sense. I understand that RV can handle large datasets much better than LV.

Why isn't LV deprecated by now or at least mentioned that RV should be used for performance reasons? I never used RecyclerView but is it so much more complicated that its worth having 2 views that do essentially the same thing? Or maybe there is another reason?

Itamar Kerbel
  • 2,063
  • 1
  • 14
  • 26

1 Answers1

0

One reason might be because the LV has it's own onItemClickedListener whereas with RV you have to make your own.

One reason why RecyclerView is better is because it recycles, as the names suggests, automatically the views inside the list.

I've worked with both and definitely recommend RV.

petryk33
  • 431
  • 5
  • 18