1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2014 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15--> 16 17<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" 18 android:title="@string/other_sound_settings" 19 android:key="other_sound_settings" 20 xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"> 21 22 <!-- Dial pad tones --> 23 <SwitchPreference 24 android:key="dial_pad_tones" 25 android:title="@string/dial_pad_tones_title" 26 android:switchTextOff="" 27 android:switchTextOn="" 28 android:persistent="false" /> 29 30 <!-- Screen locking sounds --> 31 <SwitchPreference 32 android:key="screen_locking_sounds" 33 android:title="@string/screen_locking_sounds_title" 34 android:switchTextOff="" 35 android:switchTextOn="" 36 android:persistent="false" /> 37 38 <!-- Docking sounds --> 39 <SwitchPreference 40 android:key="docking_sounds" 41 android:title="@string/docking_sounds_title" 42 android:switchTextOff="" 43 android:switchTextOn="" 44 android:persistent="false" /> 45 46 <!-- Touch sounds --> 47 <SwitchPreference 48 android:key="touch_sounds" 49 android:title="@string/touch_sounds_title" 50 android:switchTextOff="" 51 android:switchTextOn="" 52 android:persistent="false" /> 53 54 <!-- Vibrate on touch --> 55 <SwitchPreference 56 android:key="vibrate_on_touch" 57 android:title="@string/vibrate_on_touch_title" 58 android:switchTextOff="" 59 android:switchTextOn="" 60 android:persistent="false" /> 61 62 <!-- Dock speaker plays --> 63 <com.android.settings.notification.DropDownPreference 64 android:key="dock_audio_media" 65 android:title="@string/dock_audio_media_title" 66 android:persistent="false" /> 67 68 <!-- Emergency tone --> 69 <com.android.settings.notification.DropDownPreference 70 android:key="emergency_tone" 71 android:title="@string/emergency_tone_title" 72 android:persistent="false" /> 73 74</PreferenceScreen> 75