blob: 66422c9ccbc2636332b023a51fe5dbdc296fdf09 [file] [log] [blame]
Adrien BĂ©raud04d822c2015-04-02 17:44:36 -04001<?xml version="1.0" encoding="utf-8"?>
2<!--
3Copyright (C) 2004-2014 Savoir-Faire Linux Inc.
4
5Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
6
7This 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.
20
21Additional permission under GNU GPL version 3 section 7:
22
23If you modify this program, or any covered work, by linking or
24combining it with the OpenSSL project's OpenSSL library (or a
25modified version of that library), containing parts covered by the
26terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
27grants you additional permission to convey the resulting work.
28Corresponding Source for a non-source form of such a combination
29shall include the source code for the parts of OpenSSL used as well
30as that of the covered work.
31-->
32
33<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
34 android:id="@+id/drawer_layout"
35 android:layout_width="match_parent"
36 android:layout_height="match_parent" >
37
38 <cx.ring.views.SlidingUpPanelLayout
39 android:id="@+id/contact_panel"
40 android:layout_width="match_parent"
41 android:layout_height="match_parent" >
42
43 <FrameLayout
44 android:id="@+id/main_frame"
45 android:layout_width="match_parent"
46 android:layout_height="match_parent"
47 android:paddingTop="?android:attr/actionBarSize"
48 android:orientation="vertical" >
49 </FrameLayout>
50
51 <FrameLayout
52 android:id="@+id/contacts_frame"
53 android:layout_width="match_parent"
54 android:layout_height="match_parent"
55 android:clickable="true"
56 android:focusable="true"
57 android:focusableInTouchMode="true" />
58 </cx.ring.views.SlidingUpPanelLayout>
59
60 <FrameLayout
61 android:id="@+id/left_drawer"
62 android:layout_width="300dp"
63 android:layout_height="match_parent"
64 android:layout_gravity="start"
65 android:choiceMode="singleChoice"
66 android:divider="@android:color/transparent"
67 android:dividerHeight="0dp" />
68
69</android.support.v4.widget.DrawerLayout>