mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 21:55:48 +03:00
24 lines
No EOL
828 B
XML
Executable file
24 lines
No EOL
828 B
XML
Executable file
<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" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/background_color">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/upload_list_fragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
</LinearLayout>
|
|
|
|
<include
|
|
layout="@layout/drawer"
|
|
android:layout_width="240dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="start"/>
|
|
|
|
</android.support.v4.widget.DrawerLayout> |