blob: f14bf10ce62f5f39f3451fea140090b91f77d798 [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<!--
Alexandre Lisiond5dbcdf2013-10-07 14:13:09 -04003Copyright (C) 2004-2013 Savoir-Faire Linux Inc.
Adrien Béraudffd32412012-08-07 18:39:23 -04004
Alexandre Lisiond5dbcdf2013-10-07 14:13:09 -04005Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
6 Adrien Beraud <adrien.beraud@gmail.com>
Adrien Béraudffd32412012-08-07 18:39:23 -04007
8This program is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 3 of the License, or
11(at your option) any later version.
12
13This program is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
22Additional permission under GNU GPL version 3 section 7:
23
24If you modify this program, or any covered work, by linking or
25combining it with the OpenSSL project's OpenSSL library (or a
26modified version of that library), containing parts covered by the
27terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
28grants you additional permission to convey the resulting work.
29Corresponding Source for a non-source form of such a combination
30shall include the source code for the parts of OpenSSL used as well
31as that of the covered work.
alisiond295ec22013-05-17 10:12:13 -040032-->
Adrien Béraudffd32412012-08-07 18:39:23 -040033
34<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
alisiond295ec22013-05-17 10:12:13 -040035 android:layout_width="match_parent"
36 android:layout_height="match_parent"
37 android:focusable="false"
38 android:focusableInTouchMode="false"
Alexandre Lision8b9d8e82013-10-04 09:21:27 -040039 android:orientation="vertical" >
Adrien Béraudffd32412012-08-07 18:39:23 -040040
Alexandre Lisiond5dbcdf2013-10-07 14:13:09 -040041
alisiond295ec22013-05-17 10:12:13 -040042 <ListView
43 android:id="@+id/contacts_list"
44 style="@style/CallElementList"
45 android:layout_width="match_parent"
46 android:layout_height="match_parent"
alisiond295ec22013-05-17 10:12:13 -040047 android:clickable="true"
alisionf7053602013-07-09 10:25:20 -040048 android:fastScrollEnabled="true"
Alexandre Lision8b9d8e82013-10-04 09:21:27 -040049 android:focusable="true"
alisiond295ec22013-05-17 10:12:13 -040050 android:focusableInTouchMode="true" />
Adrien Béraudffd32412012-08-07 18:39:23 -040051
alisiond295ec22013-05-17 10:12:13 -040052 <TextView
Alexandre Lision4df961d2013-10-16 13:44:49 -040053 android:id="@android:id/empty"
alisiond295ec22013-05-17 10:12:13 -040054 android:layout_width="match_parent"
Alexandre Lision573045c2013-09-11 17:20:25 -040055 android:layout_height="wrap_content"
alisiond295ec22013-05-17 10:12:13 -040056 android:layout_gravity="center"
57 android:gravity="center"
Alexandre Lision8b9d8e82013-10-04 09:21:27 -040058 android:text="@string/no_contact_found"
59 android:textSize="40sp" />
alisiond295ec22013-05-17 10:12:13 -040060
61</LinearLayout>