RecyclerView è il componente Android standard per visualizzare liste di dati scorrevoli in modo efficiente. "Ricicla" le view (riutilizzandole mentre scorri) invece di creare una view per ogni elemento — essenziale per le prestazioni con liste lunghe.
Perché è importante
Displaying a long list naively (a view per item) is WASTEFUL — thousands of items =
thousands of views = memory/performance problems.
RECYCLERVIEW reuses a small pool of views:
→ only views for VISIBLE items exist; as you scroll, off-screen views are RECYCLED
(re-bound with new data) for newly-visible items
→ constant memory regardless of list size → smooth, efficient scrolling
→ This recycling is the key to performant lists.
