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

[Docs] Android roadmap: Relative layout (#6902)

* [Docs] Android roadmap: Relative layout

* [Docs] Android roadmap: Format
This commit is contained in:
Brian Rodriguez
2024-09-04 03:17:15 -05:00
committed by GitHub
parent 83e61e548c
commit bdbaeffd50

View File

@@ -0,0 +1,9 @@
# RelativeLayout
A **RelativeLayout** in Android is a type of ViewGroup that allows you to position child views relative to each other or relative to the parent layout. It's a flexible layout where you can arrange the child views in relation to one another based on certain rules, making it suitable for creating complex UI designs.
**RelativeLayout** was commonly used in earlier Android development, but with the introduction of `ConstraintLayout`, it's less frequently used in modern apps.
Visit the following resources to learn more:
- [@official@Android developers: Relative Layout](https://developer.android.com/develop/ui/views/layout/relative)