1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-01 21:32:35 +02:00

[Add] Docs Android roadmap: tabs and edittext (#6764)

* [Add] Docs Android roadmap: tabs and edittext

* Update src/data/roadmaps/android/content/edittext@boMz0HZlMAsLdCZlpUo-H.md

* Update src/data/roadmaps/android/content/tabs@pEBpXv3Jf1AzBNHlvVrG8.md

---------

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
This commit is contained in:
Brian Rodriguez
2024-08-23 06:11:06 -05:00
committed by GitHub
parent a81fd615d9
commit 694d7b1ecc
2 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
# EditText
`EditText` is a fundamental UI element in Android Studio, used for allowing users to input and edit text within an application. It is a subclass of `TextView` that provides additional features to handle user input.
Visit the following resources to learn more:
- [@official@Android developers: EditText](https://developer.android.com/reference/android/widget/EditText)

View File

@@ -0,0 +1,7 @@
# Tabs
Tabs in Android Studio are a UI component used to organize content into multiple sections, allowing users to navigate between them by selecting the corresponding tab. This component is commonly used when there is a need to present different types of content in a single screen, like different categories, settings, or pages within an app.
Visit the following resources to learn more:
- [@official@Android developers: Material Tabs](https://developer.android.com/reference/com/google/android/material/tabs/package-summary)