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

Add content to Android roadmap (#6555)

* [Add] Android Roadmap: Fragment content

* [Add] Android Roadmap: Dialog content

* [Add] Android Roadmap: Button content

* [Change] Modify the grammar

* Update src/data/roadmaps/android/content/fragments@2iDJrxjXOt7o2fPp2HfRl.md

* Update src/data/roadmaps/android/content/dialogs@Mtx0bY0drmaTw8sCM5YTl.md

* Update src/data/roadmaps/android/content/buttons@WhfzFOUpm0DFEj7Oeq21R.md

* Update src/data/roadmaps/android/content/buttons@WhfzFOUpm0DFEj7Oeq21R.md

---------

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
This commit is contained in:
Brian Rodriguez
2024-08-14 04:58:39 -05:00
committed by GitHub
parent a547a302ca
commit 5df7fa17b3
3 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
# Buttons
A `button` consists of text or an icon, or both, that communicates what action occurs when the user taps it.
Learn more from the following resources:
- [@official@Android Developers: Button](https://developer.android.com/develop/ui/views/components/button)

View File

@@ -0,0 +1,6 @@
# Dialogs
A `DialogFragment` is a special fragment subclass that is designed for creating and hosting dialogs. Although you don't need to host your **dialog** within a fragment, doing so lets the `FragmentManager` manage the state of the dialog and automatically restore the dialog when a configuration change occurs.
Learn more from the following resources:
- [@official@Android Developers: Dialogs](https://developer.android.com/guide/fragments/dialogs)

View File

@@ -0,0 +1,7 @@
# Fragments
A `Fragment` represents a reusable portion of your app's UI. A fragment defines and manages its own layout, has its own lifecycle, and can handle its own input events. Fragments can't live on their own. They must be hosted by an activity or another fragment. The fragments view hierarchy becomes part of, or attaches to, the hosts view hierarchy.
Visit the following resources to learn more:
- [@official@Android Developers: Fragments](https://developer.android.com/guide/fragments)