Lacerta/app/src/main/res/layout/activity_main.xml

31 lines
1.4 KiB
XML
Raw Normal View History

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-09 03:32:42 +00:00
<androidx.fragment.app.FragmentContainerView
2023-12-09 04:38:15 +00:00
android:id="@+id/nav_host_fragment"
2023-12-09 03:32:42 +00:00
android:name="androidx.navigation.fragment.NavHostFragment"
2023-12-09 04:41:17 +00:00
android:layout_width="0dp"
android:layout_height="0dp"
2023-12-09 03:32:42 +00:00
app:defaultNavHost="true"
app:layout_constraintBottom_toTopOf="@+id/bottom_nav"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:navGraph="@navigation/main_nav"
2023-12-17 06:34:30 +00:00
tools:layout="@layout/fragment_debug_menu_container" />
2023-12-09 04:41:17 +00:00
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottom_nav"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:menu="@menu/bottom_nav_menu"/>
2023-12-07 01:36:00 +00:00
</androidx.constraintlayout.widget.ConstraintLayout>