2023-12-07 01:36:00 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-01-19 08:42:55 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-12-07 01:36:00 +00:00
|
|
|
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"
|
2023-12-18 04:29:04 +00:00
|
|
|
android:theme="@style/Theme.Lacerta"
|
2023-12-07 01:36:00 +00:00
|
|
|
tools:context=".MainActivity">
|
|
|
|
|
2024-01-19 08:42:55 +00:00
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
|
|
android:id="@+id/nav_host_fragment"
|
|
|
|
android:name="androidx.navigation.fragment.NavHostFragment"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
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"
|
2024-01-21 10:45:02 +00:00
|
|
|
tools:layout="@layout/fragment_home_top" />
|
2023-12-09 04:41:17 +00:00
|
|
|
|
2024-01-19 08:42:55 +00:00
|
|
|
<com.google.android.material.bottomnavigation.BottomNavigationView
|
|
|
|
android:id="@+id/bottom_nav"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2024-01-19 11:09:26 +00:00
|
|
|
android:background="@color/colorSecondaryContainer"
|
|
|
|
app:itemIconTint="@color/colorOnSecondaryContainer"
|
|
|
|
app:itemTextColor="@color/colorOnSecondaryContainer"
|
|
|
|
app:itemActiveIndicatorStyle="@style/Lacerta.Custom.Indicator"
|
|
|
|
app:labelVisibilityMode="selected"
|
2024-01-19 08:42:55 +00:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2024-01-21 16:17:57 +00:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:menu="@menu/bottom_nav_menu" />
|
2023-12-09 04:41:17 +00:00
|
|
|
|
2024-01-19 08:42:55 +00:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|