Aligning the button to the bottom of the screen while constraining it to the UI components above

44 Views Asked by At

I have a screen with two Edit texts and a button towards the bottom of the screen. Here is my xml:

        <EditText
                        android:id="@+id/editText1"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:maxLength="20"
                        app:layout_constraintTop_toTopOf="parent" />

        <EditText
                        android:id="@+id/editText2"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:maxLength="20"
                        app:layout_constraintTop_toBottomOf="+@id/editText1" />

        <Button
                    android:id="@+id/editBtn"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:enabled="false"
                    android:text="Edit"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintTop_toBottomOf="@+id/editText2" />

This code is placed inside a constraint layout. The components should be connected to each other. But I want the button to be at the bottom of the screen without having to specify the margintop to avoid UI disruptions in different screen devices. Could you please let me know if this is possible.

0

There are 0 best solutions below