diff --git a/src/data/roadmaps/android/content/recycleview@xIvplWfe-uDr9iHjPT1Mx.md b/src/data/roadmaps/android/content/recycleview@xIvplWfe-uDr9iHjPT1Mx.md index e69de29bb..59761ade3 100644 --- a/src/data/roadmaps/android/content/recycleview@xIvplWfe-uDr9iHjPT1Mx.md +++ b/src/data/roadmaps/android/content/recycleview@xIvplWfe-uDr9iHjPT1Mx.md @@ -0,0 +1,10 @@ +# RecyclerView + +RecyclerView is the most commonly used and powerful list management tool in Android development. Witch makes it easy to efficiently display large sets of data. You supply the data and define how each item looks, and the RecyclerView library dynamically creates the elements when they're needed. + +As the name implies, RecyclerView recycles those individual elements. When an item scrolls off the screen, RecyclerView doesn't destroy its view. Instead, RecyclerView reuses the view for new items that have scrolled onscreen. RecyclerView improves performance and your app's responsiveness, and it reduces power consumption. + +Learn more from the following resources: + +- [@article@Android Developers: Create dynamic lists with RecyclerView](https://developer.android.com/develop/ui/views/layout/recyclerview) +