nextcloud-android/res/layout/upload_list_layout.xml

24 lines
850 B
XML
Raw Normal View History

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" >
<fragment
2016-01-19 19:32:50 +03:00
android:id="@+id/upload_list_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="25dp"
android:paddingRight="25dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
2016-01-19 19:32:50 +03:00
class="com.owncloud.android.ui.fragment.UploadListFragment"/>
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>