2018-03-04 12:49:16 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-10-20 20:59:46 +02:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-05-20 14:12:32 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-08-24 15:48:29 +02:00
|
|
|
android:id="@+id/mainContainer"
|
2018-03-04 12:49:16 +01:00
|
|
|
android:layout_width="match_parent"
|
2018-10-03 21:28:23 +02:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2019-08-26 20:54:20 +02:00
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/mainToolbar"
|
|
|
|
style="@style/Widget.MaterialComponents.Toolbar.Surface"
|
2018-10-03 21:28:23 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-05-20 14:12:32 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:contentInsetStartWithNavigation="0dp" />
|
2018-08-24 15:48:29 +02:00
|
|
|
|
2019-10-15 19:15:28 +02:00
|
|
|
<androidx.fragment.app.FragmentContainerView
|
2018-08-24 15:48:29 +02:00
|
|
|
android:id="@+id/mainFragmentContainer"
|
|
|
|
android:layout_width="match_parent"
|
2018-10-03 21:28:23 +02:00
|
|
|
android:layout_height="match_parent"
|
2019-08-26 20:54:20 +02:00
|
|
|
android:layout_marginTop="?actionBarSize"
|
|
|
|
android:layout_marginBottom="@dimen/bottom_navigation_height" />
|
2018-08-24 15:48:29 +02:00
|
|
|
|
|
|
|
<com.aurelhubert.ahbottomnavigation.AHBottomNavigation
|
|
|
|
android:id="@+id/mainBottomNav"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom" />
|
2018-10-20 20:59:46 +02:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|