2014-11-12 03:34:24 +00:00
|
|
|
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/drawer_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context="fishrungames.bashgid.MainActivity" >
|
|
|
|
|
|
|
|
|
2014-10-23 16:58:47 +00:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-11-12 03:34:24 +00:00
|
|
|
android:id="@+id/fragment_container"
|
2014-10-23 16:58:47 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" >
|
|
|
|
</FrameLayout>
|
2014-11-12 03:34:24 +00:00
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/navigation_drawer"
|
|
|
|
android:name="fishrungames.bashgid.NavigationDrawerFragment"
|
|
|
|
android:layout_width="@dimen/navigation_drawer_width"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="start"
|
|
|
|
tools:layout="@layout/fragment_navigation_drawer" />
|
|
|
|
|
|
|
|
|
|
|
|
</android.support.v4.widget.DrawerLayout>
|