<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="
http://schemas.android.com/apk/res/android"
xmlns:app="
http://schemas.android.com/apk/res-auto"
xmlns:tools="
http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<FrameLayout
android:id="@+id/container_fragment_1"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintBottom_toTopOf="@+id/container_fragment_2"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_weight="1">
</FrameLayout>
<FrameLayout
android:id="@+id/container_fragment_2"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintBottom_toTopOf="@+id/container_fragment_3"
app:layout_constraintTop_toBottomOf="@+id/container_fragment_1"
app:layout_constraintVertical_weight="3">
</FrameLayout>
</androidx.constraintlayout.widget.ConstraintLayout>