mirror of
https://github.com/element-hq/element-android
synced 2024-12-22 17:20:48 +03:00
31 lines
No EOL
1.2 KiB
XML
31 lines
No EOL
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/drawerLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:openDrawer="start">
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
android:id="@+id/coordinatorLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/homeDetailFragmentContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<include
|
|
android:id="@+id/waiting_view"
|
|
layout="@layout/merge_overlay_waiting_view" />
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/homeDrawerFragmentContainer"
|
|
android:layout_width="@dimen/navigation_drawer_max_width"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="start" />
|
|
|
|
</androidx.drawerlayout.widget.DrawerLayout> |