blob: 95b06235bb271b930891ac6ed9254298a2ca9c4a [file] [log] [blame]
alision465ceba2013-07-04 09:24:30 -04001<?xml version="1.0" encoding="utf-8"?>
2<!--
3Copyright (C) 2004-2012 Savoir-Faire Linux Inc.
4
5Author: Adrien Beraud <adrien.beraud@gmail.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<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
34 android:layout_width="match_parent"
35 android:layout_height="match_parent"
Alexandre Lisionc51ccb12013-09-11 16:00:30 -040036 android:background="@color/lighter_gray"
alision465ceba2013-07-04 09:24:30 -040037 android:paddingLeft="8dp"
alision465ceba2013-07-04 09:24:30 -040038 android:paddingRight="8dp" >
39
Alexandre Lision573045c2013-09-11 17:20:25 -040040 <RelativeLayout
41 android:id="@+id/calls_layouts"
Alexandre Lisionc51ccb12013-09-11 16:00:30 -040042 android:layout_width="match_parent"
Alexandre Lision6d75d062013-09-13 14:18:34 -040043 android:layout_height="wrap_content"
Alexandre Lision573045c2013-09-11 17:20:25 -040044 android:layout_alignParentTop="true"
45 android:layout_margin="10dp"
46 android:background="@drawable/item_call_selector" >
Alexandre Lisionc51ccb12013-09-11 16:00:30 -040047
Alexandre Lision573045c2013-09-11 17:20:25 -040048 <LinearLayout
49 android:id="@+id/linear1"
50 android:layout_width="match_parent"
Alexandre Lisionc51ccb12013-09-11 16:00:30 -040051 android:layout_height="wrap_content"
Alexandre Lision573045c2013-09-11 17:20:25 -040052 android:layout_alignParentLeft="true"
53 android:layout_alignParentTop="true"
54 android:weightSum="4" >
Alexandre Lisionc51ccb12013-09-11 16:00:30 -040055
Alexandre Lision573045c2013-09-11 17:20:25 -040056 <TextView
57 android:id="@+id/calls_counter"
58 android:layout_width="0dp"
59 android:layout_height="wrap_content"
60 android:layout_weight="1"
61 android:gravity="center"
Alexandre Lision573045c2013-09-11 17:20:25 -040062 android:textSize="40sp" />
63
64 <TextView
65 android:id="@+id/textView2"
66 android:layout_width="0dp"
67 android:layout_height="wrap_content"
68 android:layout_weight="3"
Alexandre Lisionfb0985b2013-09-27 16:23:44 -040069 android:text="@string/home_calls_title"
Alexandre Lision573045c2013-09-11 17:20:25 -040070 android:textSize="30sp" />
71 </LinearLayout>
72
73 <ListView
74 android:id="@+id/calls_list"
75 android:layout_width="match_parent"
Alexandre Lisionc51ccb12013-09-11 16:00:30 -040076 android:layout_height="wrap_content"
Alexandre Lision573045c2013-09-11 17:20:25 -040077 android:layout_below="@+id/linear1" >
78 </ListView>
79 </RelativeLayout>
Alexandre Lisionc51ccb12013-09-11 16:00:30 -040080
Alexandre Lision573045c2013-09-11 17:20:25 -040081 <RelativeLayout
82 android:id="@+id/confs_layouts"
Alexandre Lisionc51ccb12013-09-11 16:00:30 -040083 android:layout_width="match_parent"
Alexandre Lision6d75d062013-09-13 14:18:34 -040084 android:layout_height="wrap_content"
Alexandre Lision573045c2013-09-11 17:20:25 -040085 android:layout_below="@+id/calls_layouts"
86 android:layout_margin="10dp"
87 android:background="@drawable/item_call_selector" >
Alexandre Lisionc51ccb12013-09-11 16:00:30 -040088
Alexandre Lision573045c2013-09-11 17:20:25 -040089 <LinearLayout
90 android:id="@+id/linear2"
91 android:layout_width="match_parent"
Alexandre Lisionc51ccb12013-09-11 16:00:30 -040092 android:layout_height="wrap_content"
Alexandre Lision573045c2013-09-11 17:20:25 -040093 android:layout_alignParentLeft="true"
94 android:layout_alignParentTop="true"
95 android:weightSum="4" >
Alexandre Lisionc51ccb12013-09-11 16:00:30 -040096
Alexandre Lision573045c2013-09-11 17:20:25 -040097 <TextView
98 android:id="@+id/confs_counter"
99 android:layout_width="0dp"
100 android:layout_height="wrap_content"
101 android:layout_weight="1"
102 android:gravity="center"
Alexandre Lision573045c2013-09-11 17:20:25 -0400103 android:textSize="40sp" />
104
105 <TextView
106 android:id="@+id/textView4"
107 android:layout_width="0dp"
108 android:layout_height="wrap_content"
109 android:layout_weight="3"
Alexandre Lisionfb0985b2013-09-27 16:23:44 -0400110 android:text="@string/home_conferences_title"
Alexandre Lision573045c2013-09-11 17:20:25 -0400111 android:textSize="30sp" />
112 </LinearLayout>
113
114 <ListView
115 android:id="@+id/confs_list"
116 android:layout_width="match_parent"
Alexandre Lisionc51ccb12013-09-11 16:00:30 -0400117 android:layout_height="wrap_content"
Alexandre Lision573045c2013-09-11 17:20:25 -0400118 android:layout_below="@+id/linear2" >
119 </ListView>
120 </RelativeLayout>
alision465ceba2013-07-04 09:24:30 -0400121
alision465ceba2013-07-04 09:24:30 -0400122
123</RelativeLayout>