blob: e291d2efb179e6121ab12c57787429010fbbfa50 [file] [log] [blame]
Adrien Béraudffd32412012-08-07 18:39:23 -04001<?xml version="1.0" encoding="utf-8"?>
alisione2a38e12013-04-25 14:20:20 -04002<!--
Alexandre Lisionafd40e42013-10-15 13:48:37 -04003Copyright (C) 2004-2013 Savoir-Faire Linux Inc.
Adrien Béraudffd32412012-08-07 18:39:23 -04004
Alexandre Lisionafd40e42013-10-15 13:48:37 -04005Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
Adrien Béraudffd32412012-08-07 18:39:23 -04006
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.
alisione2a38e12013-04-25 14:20:20 -040031-->
Alexandre Lisionafd40e42013-10-15 13:48:37 -040032<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
Adrien Béraudffd32412012-08-07 18:39:23 -040033
Alexandre Lisionafd40e42013-10-15 13:48:37 -040034 <PreferenceCategory
Alexandre Lisiona3650992013-11-13 14:19:35 -050035 android:id="@+id/audio_dtmf_category"
Alexandre Lision68ee0ac2013-12-06 15:06:19 -050036 android:title="DTMF" >
37 <ListPreference
Alexandre Lisiona3650992013-11-13 14:19:35 -050038 android:id="@+id/account_dtmf_type"
Alexandre Lision68ee0ac2013-12-06 15:06:19 -050039 android:entries="@array/dtmf_types_entries"
40 android:entryValues="@array/dtmf_types_values"
Alexandre Lisiona3650992013-11-13 14:19:35 -050041 android:key="Account.dtmfType"
42 android:persistent="false"
Alexandre Lisiona3650992013-11-13 14:19:35 -050043 android:title="DTMF Type" />
Alexandre Lisionafd40e42013-10-15 13:48:37 -040044 </PreferenceCategory>
Alexandre Lisiona3650992013-11-13 14:19:35 -050045 <PreferenceCategory
46 android:id="@+id/audio_ringtone_category"
47 android:title="Ringtones" >
Alexandre Lision68ee0ac2013-12-06 15:06:19 -050048 <CheckBoxPreference
49 android:id="@+id/audio_ringtone"
50 android:key="Account.ringtoneEnabled"
51 android:persistent="false"
52 android:title="Activate ringtones " />
53
Alexandre Lisiona3650992013-11-13 14:19:35 -050054 <EditTextPreference
55 android:id="@+id/audio_ringtone"
Alexandre Lision68ee0ac2013-12-06 15:06:19 -050056 android:key="Account.ringtonePath"
57 android:enabled="false"
Alexandre Lisiona3650992013-11-13 14:19:35 -050058 android:persistent="false"
Alexandre Lisiona3650992013-11-13 14:19:35 -050059 android:title="Ringtone" />
60 </PreferenceCategory>
Adrien Béraudffd32412012-08-07 18:39:23 -040061
Alexandre Lisionafd40e42013-10-15 13:48:37 -040062</PreferenceScreen>