RecyclerView डेटाको स्क्रोलयोग्य सूचीहरू प्रदर्शन गर्नको लागि मानक Android घटक हो जसले कुशलतापूर्वक काम गर्छ। यो views को "पुनर्चक्र" गर्छ (तपाई स्क्रोल गर्दा तिनलाई पुन: प्रयोग गर्दै) हरेक आइटमको लागि view बनाउनुको सट्टा — लामो सूचीहरूसँग कार्यक्षमताको लागि आवश्यक छ।
RecyclerView किन (पुनर्चक्र अवधारणा)
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.
