2016-01-12 16:16:22 +03:00
|
|
|
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/drawer_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clickable="true" >
|
|
|
|
|
2016-01-20 13:19:43 +03:00
|
|
|
<LinearLayout
|
2014-11-07 17:26:21 +03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2016-01-20 13:19:43 +03:00
|
|
|
android:background="@color/background_color">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/upload_list_fragment"
|
|
|
|
android:layout_width="match_parent"
|
2016-03-14 18:11:45 +03:00
|
|
|
android:layout_height="match_parent"/>
|
2016-01-20 13:19:43 +03:00
|
|
|
</LinearLayout>
|
2014-11-07 17:26:21 +03:00
|
|
|
|
2016-01-12 16:16:22 +03:00
|
|
|
<include
|
|
|
|
layout="@layout/drawer"
|
|
|
|
android:layout_width="240dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="start"/>
|
|
|
|
|
|
|
|
</android.support.v4.widget.DrawerLayout>
|