From 9f49424e674f4b5674b285f6c25abd2739cad8ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Germ=C3=A1n=20Gonz=C3=A1lez?= Date: Fri, 10 May 2024 21:47:37 -0300 Subject: [PATCH] Fix typo in android roadmap (#5317) --- .../104-interface-and-navigation/layouts/104-recycle-view.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/roadmaps/android/content/104-interface-and-navigation/layouts/104-recycle-view.md b/src/data/roadmaps/android/content/104-interface-and-navigation/layouts/104-recycle-view.md index c06caf124..523e25dde 100644 --- a/src/data/roadmaps/android/content/104-interface-and-navigation/layouts/104-recycle-view.md +++ b/src/data/roadmaps/android/content/104-interface-and-navigation/layouts/104-recycle-view.md @@ -1,3 +1,3 @@ -# RecycleView +# RecyclerView -The `RecyclerView` is an enhanced version of the `ListView` and the `GridView`. It is a more advanced and flexible version of `ListView`. In `RecyclerView`, there are several different components that work together to display your data. The `RecyclerView.Adapter` is similar to the `BaseAdapter`; it takes data and turns it into views that can be inserted in the `RecyclerView` layout. On the other hand, the `RecyclerView.LayoutManager` helps positioning items inside the `RecyclerView` and determining the behavior when scrolling. A third significant component is `RecyclerView.ViewHolder`. It provides references to the views for each data item which help to reduce unnecessary calls to `findViewById()`. It's also important to mention that the `RecyclerView` class supports not only lists but also a custom implementation of horizontal or vertical lists, grids, or staggered grids while offering more opportunities for fantastic custom animations. \ No newline at end of file +The `RecyclerView` is an enhanced version of the `ListView` and the `GridView`. It is a more advanced and flexible version of `ListView`. In `RecyclerView`, there are several different components that work together to display your data. The `RecyclerView.Adapter` is similar to the `BaseAdapter`; it takes data and turns it into views that can be inserted in the `RecyclerView` layout. On the other hand, the `RecyclerView.LayoutManager` helps positioning items inside the `RecyclerView` and determining the behavior when scrolling. A third significant component is `RecyclerView.ViewHolder`. It provides references to the views for each data item which help to reduce unnecessary calls to `findViewById()`. It's also important to mention that the `RecyclerView` class supports not only lists but also a custom implementation of horizontal or vertical lists, grids, or staggered grids while offering more opportunities for fantastic custom animations.