2018-10-03 18:56:33 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-01-16 21:25:43 +03:00
|
|
|
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-10-03 18:56:33 +03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-10-28 21:18:14 +03:00
|
|
|
android:id="@+id/drawerLayout"
|
2018-10-03 18:56:33 +03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-10-28 21:18:14 +03:00
|
|
|
tools:openDrawer="start">
|
2018-10-03 18:56:33 +03:00
|
|
|
|
2019-05-07 15:02:15 +03:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
2020-12-15 22:32:26 +03:00
|
|
|
android:id="@+id/coordinatorLayout"
|
2018-10-19 15:26:38 +03:00
|
|
|
android:layout_width="match_parent"
|
2019-05-07 15:02:15 +03:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2019-11-04 21:33:56 +03:00
|
|
|
<androidx.fragment.app.FragmentContainerView
|
2019-05-07 15:02:15 +03:00
|
|
|
android:id="@+id/homeDetailFragmentContainer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
2019-07-04 11:53:46 +03:00
|
|
|
|
2020-12-16 02:46:52 +03:00
|
|
|
<include
|
|
|
|
android:id="@+id/waiting_view"
|
|
|
|
layout="@layout/merge_overlay_waiting_view" />
|
2019-12-05 16:51:12 +03:00
|
|
|
|
2019-05-07 15:02:15 +03:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
2018-10-08 18:52:45 +03:00
|
|
|
|
2018-10-29 16:57:36 +03:00
|
|
|
|
2019-11-04 21:33:56 +03:00
|
|
|
<androidx.fragment.app.FragmentContainerView
|
2018-10-28 21:18:14 +03:00
|
|
|
android:id="@+id/homeDrawerFragmentContainer"
|
2021-01-19 15:33:35 +03:00
|
|
|
android:layout_width="@dimen/navigation_drawer_max_width"
|
2018-10-28 21:18:14 +03:00
|
|
|
android:layout_height="match_parent"
|
2018-10-29 19:48:31 +03:00
|
|
|
android:layout_gravity="start" />
|
2018-10-03 18:56:33 +03:00
|
|
|
|
2019-07-04 11:53:46 +03:00
|
|
|
|
2019-01-16 21:25:43 +03:00
|
|
|
</androidx.drawerlayout.widget.DrawerLayout>
|