blob: d6eb7ab70a7554da4b0af70a3c8ca05a7bedbd43 [file] [log] [blame]
Adrien Béraudffd32412012-08-07 18:39:23 -04001<?xml version="1.0" encoding="utf-8"?>
alisiond295ec22013-05-17 10:12:13 -04002<!--
Adrien Béraudffd32412012-08-07 18:39:23 -04003Copyright (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.
alisiond295ec22013-05-17 10:12:13 -040031-->
Adrien Béraudffd32412012-08-07 18:39:23 -040032
33<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
alisiond295ec22013-05-17 10:12:13 -040034 android:layout_width="match_parent"
35 android:layout_height="match_parent"
36 android:focusable="false"
37 android:focusableInTouchMode="false"
Alexandre Lision8b9d8e82013-10-04 09:21:27 -040038 android:orientation="vertical" >
Adrien Béraudffd32412012-08-07 18:39:23 -040039
alisiond295ec22013-05-17 10:12:13 -040040 <ListView
41 android:id="@+id/contacts_list"
42 style="@style/CallElementList"
43 android:layout_width="match_parent"
44 android:layout_height="match_parent"
alisiond295ec22013-05-17 10:12:13 -040045 android:clickable="true"
alisionf7053602013-07-09 10:25:20 -040046 android:fastScrollEnabled="true"
Alexandre Lision8b9d8e82013-10-04 09:21:27 -040047 android:focusable="true"
alisiond295ec22013-05-17 10:12:13 -040048 android:focusableInTouchMode="true" />
Adrien Béraudffd32412012-08-07 18:39:23 -040049
alisiond295ec22013-05-17 10:12:13 -040050 <TextView
51 android:id="@+id/empty_list_contact"
52 android:layout_width="match_parent"
Alexandre Lision573045c2013-09-11 17:20:25 -040053 android:layout_height="wrap_content"
alisiond295ec22013-05-17 10:12:13 -040054 android:layout_gravity="center"
55 android:gravity="center"
Alexandre Lision8b9d8e82013-10-04 09:21:27 -040056 android:text="@string/no_contact_found"
57 android:textSize="40sp" />
alisiond295ec22013-05-17 10:12:13 -040058
59</LinearLayout>