<
androidx.constraintlayout.widget.ConstraintLayout
android:layout_width
=
"match_parent"
android:layout_height
=
"match_parent"
>
<
TextView
android:id
=
"@+id/test"
android:layout_width
=
"wrap_content"
android:layout_height
=
"wrap_content"
android:text
=
"TEST"
android:textSize
=
"24sp"
android:background
=
"@color/light_blue_400"
android:layout_marginTop
=
"50dp"
android:layout_marginLeft
=
"10dp"
android:layout_marginBottom
=
"30dp"
app:layout_constraintBottom_toTopOf
=
"@id/test2"
app:layout_constraintLeft_toLeftOf
=
"parent"
app:layout_constraintTop_toTopOf
=
"parent"
/>
<
TextView
android:id
=
"@+id/test2"
android:layout_width
=
"wrap_content"
android:layout_height
=
"wrap_content"
android:background
=
"@color/gray_400"
android:text
=
"TEST2"
android:textSize
=
"24sp"
android:layout_marginLeft
=
"10dp"
app:layout_constraintTop_toBottomOf
=
"@id/test"
app:layout_constraintLeft_toLeftOf
=
"parent"
/>
</
androidx.constraintlayout.widget.ConstraintLayout
>