2019-05-16 11:23:57 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-11-20 12:04:41 +03:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-05-16 11:23:57 +03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-12-15 22:32:26 +03:00
|
|
|
android:id="@+id/coordinatorLayout"
|
2019-05-16 11:23:57 +03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2020-11-20 12:04:41 +03:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2019-05-16 11:23:57 +03:00
|
|
|
android:layout_width="match_parent"
|
2020-11-20 12:04:41 +03:00
|
|
|
android:layout_height="match_parent">
|
2019-05-16 11:23:57 +03:00
|
|
|
|
2021-06-10 21:25:00 +03:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/appBarLayout"
|
2020-11-20 12:04:41 +03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-06-10 21:25:00 +03:00
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2019-05-16 11:23:57 +03:00
|
|
|
|
2020-11-20 12:04:41 +03:00
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
|
|
android:id="@+id/container"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2021-06-10 21:25:00 +03:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/appBarLayout" />
|
2019-05-16 11:23:57 +03:00
|
|
|
|
2020-12-16 02:46:52 +03:00
|
|
|
<include
|
2020-12-16 14:21:25 +03:00
|
|
|
android:id="@+id/waiting_view"
|
2020-12-16 02:46:52 +03:00
|
|
|
layout="@layout/merge_overlay_waiting_view" />
|
2020-11-20 12:04:41 +03:00
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2020-12-16 14:21:25 +03:00
|
|
|
|
2020-11-20 12:04:41 +03:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|