summaryrefslogtreecommitdiffstats
path: root/res/xml
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2015-03-02 22:43:41 -0800
committerAndrew Lee <anwlee@google.com>2015-03-04 15:11:30 -0800
commitc65acdff581a103b6baabd25be6fcc8be88215f0 (patch)
tree76b9c9615a7591559c9e767d9a24cd741fba325f /res/xml
parent896a443b6e6c701270000542c921bc4e1e26189b (diff)
downloadandroid_packages_apps_Dialer-c65acdff581a103b6baabd25be6fcc8be88215f0.tar.gz
android_packages_apps_Dialer-c65acdff581a103b6baabd25be6fcc8be88215f0.tar.bz2
android_packages_apps_Dialer-c65acdff581a103b6baabd25be6fcc8be88215f0.zip
Move DTMF length setting to Sound settings.
Bug: 19372734 Change-Id: I59742a36333b1923459b89c4f11f741feb4d3e78
Diffstat (limited to 'res/xml')
-rw-r--r--res/xml/sound_settings.xml16
1 files changed, 11 insertions, 5 deletions
diff --git a/res/xml/sound_settings.xml b/res/xml/sound_settings.xml
index ebe0f51f1..80fad626a 100644
--- a/res/xml/sound_settings.xml
+++ b/res/xml/sound_settings.xml
@@ -26,15 +26,21 @@
android:ringtoneType="ringtone" />
<CheckBoxPreference
+ android:key="@string/vibrate_on_preference_key"
+ android:title="@string/vibrate_on_ring_title"
+ android:persistent="false"
+ android:defaultValue="false" />
+
+ <CheckBoxPreference
android:key="@string/play_dtmf_preference_key"
android:title="@string/dtmf_tone_enable_title"
android:persistent="false"
android:defaultValue="true" />
- <CheckBoxPreference
- android:key="@string/vibrate_on_preference_key"
- android:title="@string/vibrate_on_ring_title"
- android:persistent="false"
- android:defaultValue="false" />
+ <ListPreference
+ android:key="@string/dtmf_tone_length_preference_key"
+ android:title="@string/dtmf_tone_length_title"
+ android:entries="@array/dtmf_tone_length_entries"
+ android:entryValues="@array/dtmf_tone_length_entry_values" />
</PreferenceScreen>