27 lines
1.0 KiB
XML
27 lines
1.0 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
||
|
|
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"
|
||
|
|
android:background="@color/bg">
|
||
|
|
|
||
|
|
<FrameLayout
|
||
|
|
android:id="@+id/fragment_container"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_marginBottom="56dp" />
|
||
|
|
|
||
|
|
<com.google.android.material.bottomnavigation.BottomNavigationView
|
||
|
|
android:id="@+id/bottom_nav"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="56dp"
|
||
|
|
android:layout_gravity="bottom"
|
||
|
|
android:background="@color/surface"
|
||
|
|
app:itemIconTint="@color/nav_item_color"
|
||
|
|
app:itemTextColor="@color/nav_item_color"
|
||
|
|
app:labelVisibilityMode="labeled"
|
||
|
|
app:menu="@menu/bottom_nav" />
|
||
|
|
|
||
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|