2018-10-03 17:56:33 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-01-16 19:25:43 +01:00
|
|
|
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-10-03 17:56:33 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-10-28 19:18:14 +01:00
|
|
|
android:id="@+id/drawerLayout"
|
2018-10-03 17:56:33 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-10-28 19:18:14 +01:00
|
|
|
tools:openDrawer="start">
|
2018-10-03 17:56:33 +02:00
|
|
|
|
2018-10-19 14:26:38 +02:00
|
|
|
<FrameLayout
|
2018-10-28 19:18:14 +01:00
|
|
|
android:id="@+id/homeDetailFragmentContainer"
|
2018-10-19 14:26:38 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
2018-10-08 17:52:45 +02:00
|
|
|
|
2018-10-29 14:57:36 +01:00
|
|
|
|
2018-10-28 19:18:14 +01:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/homeDrawerFragmentContainer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-10-29 17:48:31 +01:00
|
|
|
android:layout_gravity="start" />
|
2018-10-03 17:56:33 +02:00
|
|
|
|
2019-01-16 19:25:43 +01:00
|
|
|
</androidx.drawerlayout.widget.DrawerLayout>
|