diff --git a/src/data/roadmaps/android/content/drawer@amTxz7mS98lkhOrNMJXG_.md b/src/data/roadmaps/android/content/drawer@amTxz7mS98lkhOrNMJXG_.md index e69de29bb..12a1794bc 100644 --- a/src/data/roadmaps/android/content/drawer@amTxz7mS98lkhOrNMJXG_.md +++ b/src/data/roadmaps/android/content/drawer@amTxz7mS98lkhOrNMJXG_.md @@ -0,0 +1,8 @@ +# Drawer + +The **Navigation Drawer** in Android is a sliding menu from the left that simplifies navigation between important app links. It opens by sliding or via an icon in the `ActionBar`. It’s an overlay panel that replaces a screen dedicated to displaying options. + +Visit the following resources to learn more: + +- [@official@Android developers: DrawerLayout](https://developer.android.com/reference/androidx/drawerlayout/widget/DrawerLayout) +- [@article@Navigate Drawer Tutorial](https://www.digitalocean.com/community/tutorials/android-navigation-drawer-example-tutorial) diff --git a/src/data/roadmaps/android/content/listview@EzLjX4iRT7AxkAOsJYnSU.md b/src/data/roadmaps/android/content/listview@EzLjX4iRT7AxkAOsJYnSU.md index e69de29bb..e217c232d 100644 --- a/src/data/roadmaps/android/content/listview@EzLjX4iRT7AxkAOsJYnSU.md +++ b/src/data/roadmaps/android/content/listview@EzLjX4iRT7AxkAOsJYnSU.md @@ -0,0 +1,9 @@ +# ListView + +Displays a vertically-scrollable collection of views, where each view is positioned immediatelybelow the previous view in the list. + +For a more modern, flexible, and performant approach to displaying lists, use `RecyclerView`. + +Visit the following resources to learn more: + +- [@official@Android developers: ListView](https://developer.android.com/reference/android/widget/ListView)