<?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:id="@+id/main" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".views.MainActivity"> <com.google.android.material.bottomnavigation.BottomNavigationView android:id="@+id/bottomNavigationView" android:layout_width="415dp" android:layout_height="77dp" android:layout_gravity="bottom" android:background="#BAE4C3" app:itemIconSize="30dp" app:itemIconTint="@drawable/bottom_navigation_item_state" app:itemPadding="0dp" app:itemTextAppearanceActiveBoldEnabled="false" app:itemTextColor="@drawable/bottom_navigation_item_state" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintVertical_bias="1.0" app:menu="@menu/bottom_navigation_item" /> <FrameLayout android:id="@+id/fragment_container" android:layout_width="409dp" android:layout_height="652dp" android:layout_marginBottom="2dp" app:layout_constraintBottom_toTopOf="@+id/bottomNavigationView" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent"> </FrameLayout> </androidx.constraintlayout.widget.ConstraintLayout>