From 3841e9b8f43fe07a435036d043e8d38cb7f56b3d Mon Sep 17 00:00:00 2001 From: Ronnie Kaito Imagawa <70875687+ronnieima@users.noreply.github.com> Date: Wed, 4 Jun 2025 06:49:43 -0400 Subject: [PATCH] fix(android): correct RecyclerView spelling and improve docs * fix grammar * fix 'RecycleView' to be 'RecyclerView' * rename content file to 'recyclerview' for consistency * add additional learning resource --- src/data/roadmaps/android/android.json | 2 +- .../content/recyclerview@xIvplWfe-uDr9iHjPT1Mx.md | 10 ++++++++++ .../content/recycleview@xIvplWfe-uDr9iHjPT1Mx.md | 9 --------- 3 files changed, 11 insertions(+), 10 deletions(-) create mode 100644 src/data/roadmaps/android/content/recyclerview@xIvplWfe-uDr9iHjPT1Mx.md delete mode 100644 src/data/roadmaps/android/content/recycleview@xIvplWfe-uDr9iHjPT1Mx.md 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)