SchildiChat-android/vector/src/main/res/layout/activity_home.xml

27 lines
1 KiB
XML
Raw Normal View History

2018-10-03 18:56:33 +03:00
<?xml version="1.0" encoding="utf-8"?>
<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"
android:id="@+id/drawerLayout"
2018-10-03 18:56:33 +03:00
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:openDrawer="start">
2018-10-03 18:56:33 +03:00
2019-05-07 15:02:15 +03:00
<androidx.coordinatorlayout.widget.CoordinatorLayout
2019-07-01 18:26:24 +03:00
android:id="@+id/vector_coordinator_layout"
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">
<FrameLayout
android:id="@+id/homeDetailFragmentContainer"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
<FrameLayout
android:id="@+id/homeDrawerFragmentContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start" />
2018-10-03 18:56:33 +03:00
</androidx.drawerlayout.widget.DrawerLayout>