1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-04-09 09:52:08 +02:00

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>
This commit is contained in:
Brian Rodriguez 2024-08-27 03:08:42 -05:00 committed by GitHub
parent 1f27530527
commit 33c9cb1ca3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 17 additions and 0 deletions

View File

@ -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`. Its 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)

View File

@ -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)