2016-10-06 10:29:57 +00:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-11-19 17:07:45 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
tools:context=".ui.activities.MainActivity"
|
|
|
|
|
android:id="@+id/overlayFrameLayout">
|
2018-11-06 15:11:02 +00:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
2019-08-24 10:33:14 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-11-19 17:07:45 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:elevation="0dp"
|
|
|
|
|
tools:context=".ui.activities.MainActivity">
|
2016-10-06 10:29:57 +00:00
|
|
|
|
2019-09-26 12:35:02 +00:00
|
|
|
<FrameLayout
|
2019-11-19 17:07:45 +00:00
|
|
|
android:id="@+id/fragment_container"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2022-11-22 14:48:15 +00:00
|
|
|
android:background="?attr/colorContentBackground"
|
2019-11-19 17:07:45 +00:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
2016-10-06 10:29:57 +00:00
|
|
|
|
2018-11-06 15:11:02 +00:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2019-11-19 17:07:45 +00:00
|
|
|
android:id="@+id/appbar"
|
2025-01-30 10:29:45 +00:00
|
|
|
android:background="?attr/headerBackgroundColor"
|
2019-11-19 17:07:45 +00:00
|
|
|
android:layout_width="match_parent"
|
2025-01-30 10:29:45 +00:00
|
|
|
android:layout_height="wrap_content">
|
2019-11-19 17:07:45 +00:00
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
|
android:id="@+id/toolbar"
|
2016-10-06 10:29:57 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2019-11-19 17:07:45 +00:00
|
|
|
android:minHeight="?attr/actionBarSize"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:background="?attr/colorContentBackground"
|
2023-01-04 13:34:12 +00:00
|
|
|
android:theme="@style/Toolbar.Modern"
|
|
|
|
|
style="@style/ToolbarTitleStyle"
|
2019-11-19 17:07:45 +00:00
|
|
|
app:layout_collapseMode="pin"
|
2020-09-29 10:48:20 +00:00
|
|
|
app:popupTheme="@style/PopupTheme" />
|
2018-11-06 15:11:02 +00:00
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2016-10-06 10:29:57 +00:00
|
|
|
|
2018-11-06 15:11:02 +00:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
2024-09-18 13:41:09 +00:00
|
|
|
</FrameLayout>
|