2014-05-26 22:22:13 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:ignore="InconsistentLayout"
|
|
|
|
android:id="@+id/drawer_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2014-11-19 01:18:42 +01:00
|
|
|
<fragment
|
|
|
|
android:id="@+id/main_fragment"
|
2014-05-26 22:22:13 +02:00
|
|
|
android:layout_width="match_parent"
|
2014-11-19 01:18:42 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
class="com.sismics.docs.fragment.DocListFragment"/>
|
2014-05-26 22:22:13 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/left_drawer"
|
|
|
|
android:layout_width="240dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="start"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<ListView
|
|
|
|
android:id="@+id/drawer_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:choiceMode="singleChoice"
|
|
|
|
android:divider="@android:color/transparent"
|
|
|
|
android:dividerHeight="0dp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</android.support.v4.widget.DrawerLayout>
|