1 <?xml version="1.0" encoding="utf-8"?>
3 This file is part of the LibreOffice project.
5 This Source Code Form is subject to the terms of the Mozilla Public
6 License, v. 2.0. If a copy of the MPL was not distributed with this
7 file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 xmlns:android="http://schemas.android.com/apk/res/android"
11 android:layout_width="match_parent"
12 android:layout_height="match_parent"
13 android:orientation="vertical" >
16 <include layout="@layout/toolbar" />
18 <android.support.v4.widget.DrawerLayout
19 android:id="@+id/drawer_layout"
20 android:layout_width="match_parent"
21 android:layout_height="match_parent">
26 android:id="@+id/browser_main_content"
27 android:layout_width="match_parent"
28 android:layout_height="match_parent"
29 android:orientation="vertical" />
31 <!-- The navigation drawer -->
33 android:id="@+id/left_drawer"
34 android:layout_width="240dp"
35 android:layout_height="match_parent"
36 android:layout_gravity="start"
37 android:background="#111"
38 android:choiceMode="singleChoice"
39 android:divider="@android:color/transparent"
40 android:dividerHeight="0dp" />
42 </android.support.v4.widget.DrawerLayout>