summaryrefslogtreecommitdiff
path: root/android/source/res/layout/activity_document_browser.xml
blob: 20ca14125003a594f0eabd7b054672b0b8abb7b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?xml version="1.0" encoding="utf-8"?>
<!--
 This file is part of the LibreOffice project.

 This Source Code Form is subject to the terms of the Mozilla Public
 License, v. 2.0. If a copy of the MPL was not distributed with this
 file, You can obtain one at http://mozilla.org/MPL/2.0/.
 -->
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <!-- The toolbar -->
    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:elevation="3dp"
        android:background="@color/toolbar_background"
        app:theme="@style/LibreOfficeTheme.Toolbar"
        tools:theme="@style/LibreOfficeTheme.Toolbar"
        app:popupTheme="@style/LibreOfficeTheme">

    </android.support.v7.widget.Toolbar>


    <android.support.v4.widget.DrawerLayout
        android:id="@+id/drawer_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <!-- The content -->
        <ScrollView
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical"
                android:divider="@color/doorhanger_divider_light"
                android:showDividers="middle">

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="48dp"
                    android:id="@+id/header_recents"
                    android:text="@string/title_recents"
                    android:gravity="center_vertical"
                    android:textSize="14sp"
                    android:padding="16dp"
                    android:textStyle="bold"/>

                <!--Recent files-->
                <android.support.v7.widget.RecyclerView
                    android:id="@+id/list_recent"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginTop="8dp"
                    android:layout_marginBottom="8dp"/>

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="48dp"
                    android:id="@+id/header_browser"
                    android:text="@string/title_browser"
                    android:gravity="center_vertical"
                    android:textSize="14sp"
                    android:padding="16dp"
                    android:textStyle="bold" />


                <!--Document browser-->
                <android.support.v7.widget.RecyclerView
                    android:id="@+id/file_recycler_view"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:background="@color/background_normal"
                    android:orientation="vertical" />

        </LinearLayout>

    </ScrollView>

    <!-- The navigation drawer -->
    <android.support.design.widget.NavigationView
        android:id="@+id/navigation_drawer"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="@color/background_normal"
        app:menu="@menu/navigation_menu"
        android:theme="@style/LibreOfficeTheme.NavigationView" />

    </android.support.v4.widget.DrawerLayout>
</LinearLayout>