diff --git a/src/data/roadmaps/android/android.json b/src/data/roadmaps/android/android.json index f3a6ba0ea..843aee278 100644 --- a/src/data/roadmaps/android/android.json +++ b/src/data/roadmaps/android/android.json @@ -1854,7 +1854,7 @@ }, "selected": false, "data": { - "label": "RecycleView", + "label": "RecyclerView", "style": { "fontSize": 17, "justifyContent": "flex-start", diff --git a/src/data/roadmaps/android/content/recyclerview@xIvplWfe-uDr9iHjPT1Mx.md b/src/data/roadmaps/android/content/recyclerview@xIvplWfe-uDr9iHjPT1Mx.md new file mode 100644 index 000000000..6a625a5ba --- /dev/null +++ b/src/data/roadmaps/android/content/recyclerview@xIvplWfe-uDr9iHjPT1Mx.md @@ -0,0 +1,10 @@ +# RecyclerView + +RecyclerView is the most commonly used and powerful list management tool in Android development. It 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. + +Visit the following resources to learn more: + +- [@official@RecyclerView Reference (Android Docs)](https://developer.android.com/reference/androidx/recyclerview/widget/RecyclerView) +- [@official@Create Dynamic Lists with RecyclerView (Android Docs)](https://developer.android.com/develop/ui/views/layout/recyclerview) diff --git a/src/data/roadmaps/android/content/recycleview@xIvplWfe-uDr9iHjPT1Mx.md b/src/data/roadmaps/android/content/recycleview@xIvplWfe-uDr9iHjPT1Mx.md deleted file mode 100644 index c12407983..000000000 --- a/src/data/roadmaps/android/content/recycleview@xIvplWfe-uDr9iHjPT1Mx.md +++ /dev/null @@ -1,9 +0,0 @@ -# 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: - -- [@official@Create Dynamic Lists with RecyclerView](https://developer.android.com/develop/ui/views/layout/recyclerview)