Android RelativeLayout in Kotlin
Android RelativeLayout is a ViewGroup subclass, used to specify the position of child View elements relative to each other like (A to the right of B) or relative to the parent (fix to the top of the parent).
Instead of using LinearLayout, we have to use RelativeLayout to design the user interface and keep our hierarchy flat because it improves the performance of the application.
Important Attributes for positioning views in the RelativeLayout
As we know, we need to define the position of child views or ViewGroups relative to each other element or relative to the parent. By default position is top-left, if someone forgets to specify the position of child views.
XML attributes | Description |
---|---|
layout_alignParentLeft | It is set “true” to match the left edge of view to the left edge of parent. |
layout_alignParentRight | It is set “true” to match the right edge of view to the right edge of parent. |
layout_alignParentTop | It is set “true” to match the top edge of view to the top edge of parent. |
layout_alignParentBottom | It is set “true” to match the bottom edge of view to the bottom edge of parent. |
layout_alignLeft | It accepts another sibling view id and align the view to the left of the specified view id |
layout_alignRight | It accepts another sibling view id and align the view to the right of the specified view id. |
layout_alignStart | It accepts another sibling view id and align the view to start of the specified view id. |
layout_alignEnd | It accepts another sibling view id and align the view to end of specified view id. |
layout_centerInParent | When it is set “true”, the view will be aligned to the center of parent. |
layout_centerHorizontal | When it is set “true”, the view will be horizontally centre aligned within its parent. |
layout_centerVertical | When it is set “true”, the view will be vertically centre aligned within its parent. |
layout_toLeftOf | It accepts another sibling view id and places the view left of the specified view id. |
layout_toRightOf | It accepts another sibling view id and places the view right of the specified view id. |
layout_toStartOf | It accepts another sibling view id and places the view to start of the specified view id. |
layout_toEndOf | It accepts another sibling view id and places the view to end of the specified view id. |
layout_above | It accepts another sibling view id and places the view above the specified view id. |
layout_below | It accepts another sibling view id and places the view below the specified view id. |
How to declare RelativeLayout in XML file?
First of all, we should declare the RelativeLayout in layout file using the below code.
XML
android:layout_width = "match_parent" android:layout_height = "match_parent" android:paddingLeft = "10dp" android:paddingRight = "10dp" > // Add other view or ViewGroup here </ RelativeLayout > |
RelativeLayout in activity_main.xml file
Following is the code for RelativeLayout in xml file.
XML
<? xml version = "1.0" encoding = "utf-8" ?> android:layout_width = "match_parent" android:layout_height = "match_parent" android:paddingLeft = "10dp" android:paddingRight = "10dp" > < TextView android:id = "@+id/textView1" android:layout_width = "wrap_content" android:layout_height = "wrap_content" android:layout_alignParentLeft = "true" android:text = "First name:" android:layout_marginTop = "20dp" android:textSize = "20dp" /> < EditText android:id = "@+id/editText1" android:layout_width = "match_parent" android:layout_height = "wrap_content" android:layout_toRightOf = "@id/textView1" android:layout_marginTop = "8dp" /> < TextView android:id = "@+id/textView2" android:layout_width = "wrap_content" android:layout_height = "wrap_content" android:layout_alignParentLeft = "true" android:layout_below = "@+id/textView1" android:layout_marginTop = "10dp" android:text = "Last name:" android:textSize = "20dp" /> < EditText android:id = "@+id/editText2" android:layout_width = "match_parent" android:layout_height = "wrap_content" android:layout_centerHorizontal = "true" android:layout_toRightOf = "@id/textView2" android:layout_marginTop = "45dp" /> < Button android:id = "@+id/btn4" android:layout_width = "match_parent" android:layout_height = "wrap_content" android:layout_centerHorizontal = "true" android:layout_below = "@id/textView2" android:layout_marginTop = "20dp" android:text = "Submit" /> </ RelativeLayout > |
MainActivity.kt file
When we have created layout, we need to load the XML layout resource from our activity onCreate() callback method and access the UI element form the XML using findViewById.
Kotlin
package com.geeksforgeeks.myfirstKotlinapp import androidx.appcompat.app.AppCompatActivity import android.os.Bundle class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super .onCreate(savedInstanceState) setContentView(R.layout.activity_main) // below access the UI elements } } |
RelativeLayout Output:
We can run the application using the Android Virtual Device(AVD) to get the output of the above code.
Please Login to comment...