26 lines
1.2 KiB
XML
26 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:id="@+id/bottom_nav_root"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:name="androidx.navigation.fragment.NavHostFragment"
|
|
android:id="@+id/bottom_nav_host_fragment"
|
|
android:tag="@string/bottomTabsNavHostFragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
app:defaultNavHost="true"
|
|
app:navGraph="@navigation/bottom_tabs_navigation"/>
|
|
<com.google.android.material.bottomnavigation.BottomNavigationView
|
|
android:id="@+id/bottom_navigation_view"
|
|
android:background="@color/darkLight"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:itemIconTint="@color/bottom_nav_color"
|
|
app:itemTextColor="@color/bottom_nav_color"
|
|
app:labelVisibilityMode="labeled"
|
|
app:menu="@menu/tabs_menu"/>
|
|
</LinearLayout>
|