2023-12-07 01:36:00 +00:00
|
|
|
<?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">
|
|
|
|
|
2023-12-07 03:53:12 +00:00
|
|
|
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
2023-12-07 04:51:03 +00:00
|
|
|
android:id="@+id/fragmentContainerView2"
|
2023-12-07 03:53:12 +00:00
|
|
|
android:name="androidx.navigation.fragment.NavHostFragment"
|
|
|
|
android:layout_width="match_parent"
|
2023-12-07 04:51:03 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2023-12-07 01:36:00 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2023-12-07 04:44:02 +00:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2023-12-07 04:51:03 +00:00
|
|
|
|
|
|
|
app:defaultNavHost="true"
|
|
|
|
app:navGraph="@navigation/app_nav_graph"/>
|
2023-12-07 03:53:12 +00:00
|
|
|
|
|
|
|
<com.google.android.material.bottomnavigation.BottomNavigationView
|
2023-12-07 04:51:03 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" >
|
2023-12-07 03:53:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
</com.google.android.material.bottomnavigation.BottomNavigationView>
|
2023-12-07 01:36:00 +00:00
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|