33 lines
1.5 KiB
XML
33 lines
1.5 KiB
XML
<?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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/nav_host_fragment"
|
|
android:name="androidx.navigation.fragment.NavHostFragment"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
app:defaultNavHost="true"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toEndOf="@+id/nav_view"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:navGraph="@navigation/mobile_navigation" />
|
|
|
|
<com.google.android.material.navigationrail.NavigationRailView
|
|
android:id="@+id/nav_view"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
app:headerLayout="@layout/layout_nav_header"
|
|
app:labelVisibilityMode="labeled"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:menu="@menu/menu_bottom_nav"
|
|
app:menuGravity="center"
|
|
tools:viewBindingType="com.google.android.material.navigation.NavigationBarView" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|