BayernMessenger/app/src/main/res/layout/activity_home.xml

22 lines
787 B
XML
Raw Normal View History

2018-10-03 15:56:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-10-03 15:56:33 +00:00
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawerLayout"
2018-10-03 15:56:33 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:openDrawer="start">
2018-10-03 15:56:33 +00:00
2018-10-19 12:26:38 +00:00
<FrameLayout
android:id="@+id/homeDetailFragmentContainer"
2018-10-19 12:26:38 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent" />
<FrameLayout
android:id="@+id/homeDrawerFragmentContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"
android:layout_marginRight="24dp" />
2018-10-03 15:56:33 +00:00
</android.support.v4.widget.DrawerLayout>