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-auto"> 21 22 <!-- Dial pad tones --> 23 <SwitchPreference 24 android:key="dial_pad_tones" 25 android:title="@string/dial_pad_tones_title" /> 26 27 <!-- Screen locking sounds --> 28 <SwitchPreference 29 android:key="screen_locking_sounds" 30 android:title="@string/screen_locking_sounds_title" /> 31 32 <!-- Charging sounds --> 33 <SwitchPreference 34 android:key="charging_sounds" 35 android:title="@string/charging_sounds_title" /> 36 37 <!-- Docking sounds --> 38 <SwitchPreference 39 android:key="docking_sounds" 40 android:title="@string/docking_sounds_title" /> 41 42 <!-- Touch sounds --> 43 <SwitchPreference 44 android:key="touch_sounds" 45 android:title="@string/touch_sounds_title" /> 46 47 <!-- Vibrate on touch --> 48 <SwitchPreference 49 android:key="vibrate_on_touch" 50 android:title="@string/vibrate_on_touch_title" 51 android:summary="@string/vibrate_on_touch_summary" /> 52 53 <!-- Dock speaker plays --> 54 <DropDownPreference 55 android:key="dock_audio_media" 56 android:title="@string/dock_audio_media_title" 57 android:summary="%s" /> 58 59 <!-- Boot sounds --> 60 <SwitchPreference 61 android:key="boot_sounds" 62 android:title="@string/boot_sounds_title" /> 63 64 <!-- Emergency tone --> 65 <DropDownPreference 66 android:key="emergency_tone" 67 android:title="@string/emergency_tone_title" 68 android:summary="%s" /> 69 70</PreferenceScreen> 71