Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / android / source / res / layout / activity_document_browser.xml
blob297dba1558e649d9abe3b8fb6182cd06e7378cc1
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
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/.
8  -->
9 <LinearLayout
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" >
15     <!-- The toolbar -->
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">
23         <!-- The content -->
25         <LinearLayout
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 -->
32         <ListView
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>
43 </LinearLayout>