2016-03-08 21:22:45 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-05-02 17:12:10 +02:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-12-30 14:10:31 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-07-10 16:44:54 +02:00
|
|
|
android:id="@+id/root_coordinator"
|
2015-09-24 17:27:43 +02:00
|
|
|
android:layout_width="match_parent"
|
2015-11-24 18:45:53 +01:00
|
|
|
android:layout_height="match_parent"
|
2020-04-10 20:49:21 +02:00
|
|
|
android:orientation="vertical">
|
2015-09-24 17:27:43 +02:00
|
|
|
|
2021-05-14 23:48:11 +02:00
|
|
|
<include
|
|
|
|
android:id="@+id/toolbar_layout"
|
|
|
|
layout="@layout/main_activity_toolbar" />
|
2020-04-10 20:49:21 +02:00
|
|
|
|
|
|
|
<com.bluelinelabs.conductor.ChangeHandlerFrameLayout
|
|
|
|
android:id="@+id/controller_container"
|
|
|
|
android:layout_width="match_parent"
|
2020-05-02 17:12:10 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
2016-03-08 21:22:45 +01:00
|
|
|
|
2021-05-14 23:48:11 +02:00
|
|
|
<include
|
|
|
|
android:id="@+id/fab_layout"
|
|
|
|
layout="@layout/main_activity_fab" />
|
2020-07-10 16:44:54 +02:00
|
|
|
|
2020-04-10 20:49:21 +02:00
|
|
|
<com.google.android.material.bottomnavigation.BottomNavigationView
|
|
|
|
android:id="@+id/bottom_nav"
|
|
|
|
style="@style/Widget.MaterialComponents.BottomNavigationView.Colored"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom"
|
2021-05-14 15:14:42 +02:00
|
|
|
app:itemIconTint="@color/nav_selector"
|
|
|
|
app:itemTextColor="@color/nav_selector"
|
2020-04-10 20:49:21 +02:00
|
|
|
app:labelVisibilityMode="labeled"
|
2020-09-27 01:27:39 +02:00
|
|
|
app:layout_insetEdge="bottom"
|
2021-05-14 15:14:42 +02:00
|
|
|
app:menu="@menu/main_nav" />
|
2017-05-06 15:49:39 +02:00
|
|
|
|
2020-05-02 17:12:10 +02:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|