Add docs for andorid roadmap: listview & drawer (#6818)

* [Docs] Android roadmap: Navigation drawer

* [Docs] Android roadmap: Listview

* Update src/data/roadmaps/android/content/drawer@amTxz7mS98lkhOrNMJXG_.md

---------

Co-authored-by: dsh <daniel.s.holdsworth@gmail.com>
pull/6823/head
Brian Rodriguez 3 months ago committed by GitHub
parent 1f27530527
commit 33c9cb1ca3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 8
      src/data/roadmaps/android/content/drawer@amTxz7mS98lkhOrNMJXG_.md
  2. 9
      src/data/roadmaps/android/content/listview@EzLjX4iRT7AxkAOsJYnSU.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)

@ -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)
Loading…
Cancel
Save