blob: 4efd6577a2bb57c2a83b492412782f8aebe54957 [file] [log] [blame]
Adrien Béraud433a8592015-06-17 16:25:44 -04001<?xml version="1.0" encoding="utf-8"?><!--
Adrien Béraudec528bb2016-01-14 16:52:51 -05002Copyright (C) 2004-2016 Savoir-faire Linux Inc.
Adrien Béraud04d822c2015-04-02 17:44:36 -04003
Adrien Béraud433a8592015-06-17 16:25:44 -04004Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
5Author: Adrien Béraud <adrien.beraud@savoirfairelinux.com>
6
Adrien Béraud04d822c2015-04-02 17:44:36 -04007This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 3 of the License, or
10(at your option) any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Adrien Béraud04d822c2015-04-02 17:44:36 -040020-->
21
22<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
Adrien Béraud433a8592015-06-17 16:25:44 -040023 xmlns:app="http://schemas.android.com/apk/res-auto"
Adrien Béraudb179bab2015-10-08 12:04:22 -040024 xmlns:tools="http://schemas.android.com/tools"
Adrien Béraud04d822c2015-04-02 17:44:36 -040025 android:id="@+id/drawer_layout"
26 android:layout_width="match_parent"
Adrien Béraud433a8592015-06-17 16:25:44 -040027 android:layout_height="match_parent"
Adrien Béraudb179bab2015-10-08 12:04:22 -040028 android:fitsSystemWindows="true"
29 tools:context=".client.HomeActivity">
Adrien Béraud04d822c2015-04-02 17:44:36 -040030
Adrien Bérauddde513c2015-10-22 11:21:52 -040031 <RelativeLayout
32 android:layout_width="match_parent"
33 android:layout_height="match_parent">
34
35 <android.support.v7.widget.Toolbar
36 android:id="@+id/main_toolbar"
Adrien Béraud04d822c2015-04-02 17:44:36 -040037 android:layout_width="match_parent"
Adrien Bérauddde513c2015-10-22 11:21:52 -040038 android:layout_height="wrap_content"
39 android:layout_alignParentLeft="true"
40 android:layout_alignParentStart="true"
41 android:layout_alignParentTop="true"
42 android:background="@color/actionbar"
Adrien Bérauddde513c2015-10-22 11:21:52 -040043 android:elevation="4dp"
44 android:gravity="bottom"
Adrien Bérauddde513c2015-10-22 11:21:52 -040045 android:minHeight="?attr/actionBarSize"
46 android:popupTheme="@style/Theme.AppCompat.Light.NoActionBar"
47 android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
48 app:contentInsetStart="72dp"
49 app:elevation="4dp"
50 app:popupTheme="@style/Theme.AppCompat.Light.NoActionBar"
51 app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
52 app:titleMarginBottom="@dimen/action_bar_title_margin_bottom" />
Adrien Béraudb179bab2015-10-08 12:04:22 -040053
Adrien Bérauddde513c2015-10-22 11:21:52 -040054 <FrameLayout
55 android:id="@+id/main_frame"
56 android:layout_width="match_parent"
57 android:layout_height="match_parent"
58 android:layout_alignParentLeft="true"
59 android:layout_alignParentStart="true"
60 android:layout_below="@id/main_toolbar"
61 android:orientation="vertical" />
Adrien Béraud433a8592015-06-17 16:25:44 -040062
Adrien Bérauddde513c2015-10-22 11:21:52 -040063 <android.support.design.widget.FloatingActionButton
64 android:id="@+id/action_button"
65 android:layout_width="wrap_content"
66 android:layout_height="wrap_content"
67 android:layout_alignBottom="@+id/main_toolbar"
68 android:layout_alignParentLeft="true"
69 android:layout_alignParentStart="true"
70 android:layout_marginBottom="@dimen/action_button_bpadding"
Adrien Béraudbd99d6a2015-11-23 16:04:49 -050071 android:layout_marginLeft="@dimen/action_button_lpadding"
Adrien Béraud7b6b20a2016-03-17 19:19:51 -040072 android:layout_marginStart="@dimen/action_button_lpadding"
Adrien Bérauddde513c2015-10-22 11:21:52 -040073 android:adjustViewBounds="false"
74 android:baselineAlignBottom="false"
Adrien Béraud7b6b20a2016-03-17 19:19:51 -040075 android:visibility="gone"
Adrien Bérauddde513c2015-10-22 11:21:52 -040076 app:elevation="6dp"
Adrien Béraudb968c2e2015-11-20 12:08:31 -050077 app:fabSize="mini"
78 app:pressedTranslationZ="12dp"
Adrien Béraud7b6b20a2016-03-17 19:19:51 -040079 app:rippleColor="@android:color/white" />
Adrien Béraudb179bab2015-10-08 12:04:22 -040080
Adrien Bérauddde513c2015-10-22 11:21:52 -040081 </RelativeLayout>
Adrien Béraud04d822c2015-04-02 17:44:36 -040082
Adrien Béraud433a8592015-06-17 16:25:44 -040083 <android.support.design.widget.NavigationView
Adrien Béraud04d822c2015-04-02 17:44:36 -040084 android:id="@+id/left_drawer"
Adrien Béraud433a8592015-06-17 16:25:44 -040085 android:layout_width="wrap_content"
Adrien Béraud04d822c2015-04-02 17:44:36 -040086 android:layout_height="match_parent"
87 android:layout_gravity="start"
Adrien Béraud433a8592015-06-17 16:25:44 -040088 android:fitsSystemWindows="true"
89 android:theme="@style/AppThemeBase"
90 android:windowBackground="@color/white"
Adrien Béraud7b6b20a2016-03-17 19:19:51 -040091 app:headerLayout="@layout/menuheader"
Adrien Béraud433a8592015-06-17 16:25:44 -040092 app:itemTextColor="?android:textColorPrimary"
93 app:menu="@menu/drawer" />
Adrien Béraud04d822c2015-04-02 17:44:36 -040094
95</android.support.v4.widget.DrawerLayout>