diff --git a/src/data/roadmaps/android/content/relative@yE0qAQZiEC9R8WvCdskpr.md b/src/data/roadmaps/android/content/relative@yE0qAQZiEC9R8WvCdskpr.md index e69de29bb..31a07bcd3 100644 --- a/src/data/roadmaps/android/content/relative@yE0qAQZiEC9R8WvCdskpr.md +++ b/src/data/roadmaps/android/content/relative@yE0qAQZiEC9R8WvCdskpr.md @@ -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)