22 lines
980 B
XML
22 lines
980 B
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:id="@+id/bottom_nav_host_fragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"/>
|
|
<com.google.android.material.bottomnavigation.BottomNavigationView
|
|
android:id="@+id/bottom_navigation_view"
|
|
android:background="@color/darkLight"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:itemIconTint="@color/bottom_nav_color"
|
|
app:itemTextColor="@color/bottom_nav_color"
|
|
app:menu="@menu/tabs_menu"/>
|
|
</LinearLayout>
|