The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2008 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 |
Selim Gurun | 029c13e | 2014-05-05 16:02:41 -0700 | [diff] [blame] | 7 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 8 | http://www.apache.org/licenses/LICENSE-2.0 |
Selim Gurun | 029c13e | 2014-05-05 16:02:41 -0700 | [diff] [blame] | 9 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 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" |
Sudheer Shanka | c779bec | 2016-04-19 22:48:26 -0700 | [diff] [blame] | 18 | xmlns:settings="http://schemas.android.com/apk/res/com.android.settings" |
Fan Zhang | d57ce3a | 2017-04-26 17:10:52 -0700 | [diff] [blame] | 19 | android:key="development_prefs_screen" |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 20 | android:title="@string/development_settings_title"> |
Dianne Hackborn | fd8c315 | 2012-07-13 14:26:23 -0700 | [diff] [blame] | 21 | <com.android.settings.BugreportPreference |
| 22 | android:key="bugreport" |
Dianne Hackborn | 2d803a3 | 2012-08-07 11:26:32 -0700 | [diff] [blame] | 23 | android:title="@*android:string/bugreport_title" |
| 24 | android:dialogTitle="@*android:string/bugreport_title" /> |
Dianne Hackborn | fd8c315 | 2012-07-13 14:26:23 -0700 | [diff] [blame] | 25 | |
Fan Zhang | 1c118b5 | 2016-12-09 13:04:24 -0800 | [diff] [blame] | 26 | <Preference |
Christopher Tate | fac0ea7 | 2011-08-12 17:22:41 -0700 | [diff] [blame] | 27 | android:key="local_backup_password" |
| 28 | android:title="@string/local_backup_password_title" |
| 29 | android:summary="@string/local_backup_password_summary_none" |
| 30 | android:persistent="false" > |
| 31 | <intent |
| 32 | android:action="android.settings.privacy.SET_FULL_BACKUP_PASSWORD" |
| 33 | android:targetPackage="com.android.settings" |
| 34 | android:targetClass="com.android.settings.SetFullBackupPassword" /> |
Fan Zhang | 1c118b5 | 2016-12-09 13:04:24 -0800 | [diff] [blame] | 35 | </Preference> |
Christopher Tate | fac0ea7 | 2011-08-12 17:22:41 -0700 | [diff] [blame] | 36 | |
Sudheer Shanka | c779bec | 2016-04-19 22:48:26 -0700 | [diff] [blame] | 37 | <com.android.settingslib.RestrictedSwitchPreference |
Selim Gurun | 029c13e | 2014-05-05 16:02:41 -0700 | [diff] [blame] | 38 | android:key="keep_screen_on" |
| 39 | android:title="@string/keep_screen_on" |
Sudheer Shanka | c779bec | 2016-04-19 22:48:26 -0700 | [diff] [blame] | 40 | android:summary="@string/keep_screen_on_summary" |
| 41 | settings:useAdditionalSummary="true" /> |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 42 | |
| 43 | <ListPreference |
| 44 | android:key="hdcp_checking" |
| 45 | android:title="@string/hdcp_checking_title" |
| 46 | android:dialogTitle="@string/hdcp_checking_dialog_title" |
| 47 | android:entries="@array/hdcp_checking_titles" |
| 48 | android:entryValues="@array/hdcp_checking_values" /> |
| 49 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 50 | <SwitchPreference |
Zhihai Xu | 84bbb54 | 2013-07-26 13:33:16 -0700 | [diff] [blame] | 51 | android:key="bt_hci_snoop_log" |
| 52 | android:title="@string/bt_hci_snoop_log" |
| 53 | android:summary="@string/bt_hci_snoop_log_summary"/> |
| 54 | |
Mahaver Chopra | dcf3d7c | 2016-05-11 18:18:23 +0100 | [diff] [blame] | 55 | <com.android.settingslib.RestrictedSwitchPreference |
Andres Morales | ce249fe | 2014-07-07 16:58:16 -0700 | [diff] [blame] | 56 | android:key="oem_unlock_enable" |
| 57 | android:title="@string/oem_unlock_enable" |
Mahaver Chopra | dcf3d7c | 2016-05-11 18:18:23 +0100 | [diff] [blame] | 58 | android:summary="@string/oem_unlock_enable_summary" |
| 59 | settings:useAdditionalSummary="true"/> |
Andres Morales | ce249fe | 2014-07-07 16:58:16 -0700 | [diff] [blame] | 60 | |
Fan Zhang | 1c118b5 | 2016-12-09 13:04:24 -0800 | [diff] [blame] | 61 | <Preference |
Jason Monk | 5dc70b1 | 2015-03-25 11:03:59 -0400 | [diff] [blame] | 62 | android:key="running_apps" |
| 63 | android:title="@string/runningservices_settings_title" |
| 64 | android:summary="@string/runningservices_settings_summary" |
| 65 | android:fragment="com.android.settings.applications.RunningServices" /> |
| 66 | |
Fan Zhang | 1c118b5 | 2016-12-09 13:04:24 -0800 | [diff] [blame] | 67 | <Preference |
Paul Lawrence | acbac8c | 2015-11-02 12:42:42 -0800 | [diff] [blame] | 68 | android:key="convert_to_file_encryption" |
| 69 | android:title="@string/convert_to_file_encryption" |
| 70 | android:summary="@string/convert_to_file_encryption_enabled" |
Paul Lawrence | 0e1a46c | 2015-11-04 05:09:02 -0800 | [diff] [blame] | 71 | android:fragment="com.android.settings.applications.ConvertToFbe" /> |
Paul Lawrence | acbac8c | 2015-11-02 12:42:42 -0800 | [diff] [blame] | 72 | |
Fan Zhang | 11d2d68 | 2017-03-17 16:19:26 -0700 | [diff] [blame] | 73 | <com.android.settings.development.ColorModePreference |
Romain Guy | 305f900 | 2017-06-05 18:44:47 -0700 | [diff] [blame] | 74 | android:key="picture_color_mode" |
Jason Monk | 16a8e8d | 2015-09-23 16:08:13 -0400 | [diff] [blame] | 75 | android:title="@string/picture_color_mode" |
Jason Monk | 31c7c32 | 2016-01-20 14:41:52 -0500 | [diff] [blame] | 76 | android:summary="@string/picture_color_mode_desc" /> |
Jason Monk | 16a8e8d | 2015-09-23 16:08:13 -0400 | [diff] [blame] | 77 | |
Gustav Sennton | 4d3334c | 2016-12-13 19:16:48 +0000 | [diff] [blame] | 78 | <Preference android:key="select_webview_provider" |
Gustav Sennton | 0d54bbf | 2015-10-30 18:55:32 +0000 | [diff] [blame] | 79 | android:title="@string/select_webview_provider_title" |
Gustav Sennton | 5b59628 | 2017-02-03 16:19:02 +0000 | [diff] [blame] | 80 | android:dialogTitle="@string/select_webview_provider_dialog_title" |
| 81 | android:fragment="com.android.settings.webview.WebViewAppPicker" /> |
Gustav Sennton | 0d54bbf | 2015-10-30 18:55:32 +0000 | [diff] [blame] | 82 | |
Steve Pfetsch | b3fef37 | 2016-01-13 17:07:35 -0800 | [diff] [blame] | 83 | <SwitchPreference |
| 84 | android:key="color_temperature" |
| 85 | android:title="@string/color_temperature" |
Jason Monk | 31c7c32 | 2016-01-20 14:41:52 -0500 | [diff] [blame] | 86 | android:summary="@string/color_temperature_desc" /> |
Steve Pfetsch | b3fef37 | 2016-01-13 17:07:35 -0800 | [diff] [blame] | 87 | |
Tao Bao | 45a2c16 | 2016-02-15 20:03:22 -0800 | [diff] [blame] | 88 | <SwitchPreference |
| 89 | android:key="ota_disable_automatic_update" |
| 90 | android:title="@string/ota_disable_automatic_update" /> |
| 91 | |
Fan Zhang | 1c118b5 | 2016-12-09 13:04:24 -0800 | [diff] [blame] | 92 | <Preference |
Jason Monk | fb0d8fb | 2016-04-12 13:09:13 -0400 | [diff] [blame] | 93 | android:key="demo_mode" |
| 94 | android:title="@string/demo_mode"> |
| 95 | <intent android:action="com.android.settings.action.DEMO_MODE" /> |
Fan Zhang | 1c118b5 | 2016-12-09 13:04:24 -0800 | [diff] [blame] | 96 | </Preference> |
Jason Monk | fb0d8fb | 2016-04-12 13:09:13 -0400 | [diff] [blame] | 97 | |
Sunny Goyal | c960751 | 2017-02-06 15:19:00 -0800 | [diff] [blame] | 98 | <Preference |
| 99 | android:key="quick_settings_tiles" |
| 100 | android:title="@string/quick_settings_developer_tiles"> |
| 101 | <intent |
| 102 | android:targetPackage="com.android.settings" |
| 103 | android:targetClass="com.android.settings.qstile.DevelopmentTileConfigActivity" /> |
| 104 | </Preference> |
| 105 | |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 106 | <PreferenceCategory android:key="debug_debugging_category" |
| 107 | android:title="@string/debug_debugging_category"> |
| 108 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 109 | <SwitchPreference |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 110 | android:key="enable_adb" |
| 111 | android:title="@string/enable_adb" |
| 112 | android:summary="@string/enable_adb_summary"/> |
| 113 | |
Benoit Goby | 0761ffc | 2012-12-21 16:43:20 -0800 | [diff] [blame] | 114 | <Preference android:key="clear_adb_keys" |
| 115 | android:title="@string/clear_adb_keys" /> |
| 116 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 117 | <SwitchPreference |
Jeff Sharkey | d390b70 | 2013-03-05 23:31:45 -0800 | [diff] [blame] | 118 | android:key="enable_terminal" |
| 119 | android:title="@string/enable_terminal_title" |
| 120 | android:summary="@string/enable_terminal_summary" /> |
| 121 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 122 | <SwitchPreference |
Dianne Hackborn | 2d803a3 | 2012-08-07 11:26:32 -0700 | [diff] [blame] | 123 | android:key="bugreport_in_power" |
| 124 | android:title="@string/bugreport_in_power" |
| 125 | android:summary="@string/bugreport_in_power_summary"/> |
| 126 | |
Fan Zhang | 1c118b5 | 2016-12-09 13:04:24 -0800 | [diff] [blame] | 127 | <Preference android:key="mock_location_app" |
Svet Ganov | 02e65a1 | 2015-05-13 10:39:35 -0700 | [diff] [blame] | 128 | android:title="@string/mock_location_app" /> |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 129 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 130 | <SwitchPreference |
Jon Miranda | 0b65294 | 2014-08-12 09:08:29 -0700 | [diff] [blame] | 131 | android:key="debug_view_attributes" |
| 132 | android:title="@string/debug_view_attributes" /> |
| 133 | |
Fan Zhang | 1c118b5 | 2016-12-09 13:04:24 -0800 | [diff] [blame] | 134 | <Preference android:key="debug_app" |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 135 | android:title="@string/debug_app" /> |
| 136 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 137 | <SwitchPreference |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 138 | android:key="wait_for_debugger" |
| 139 | android:title="@string/wait_for_debugger" |
| 140 | android:summary="@string/wait_for_debugger_summary"/> |
| 141 | |
Pavel Grafov | 5d567c4 | 2017-04-26 11:54:13 +0100 | [diff] [blame] | 142 | <com.android.settingslib.RestrictedSwitchPreference |
rich cannings | f042114 | 2012-09-25 16:20:36 -0700 | [diff] [blame] | 143 | android:key="verify_apps_over_usb" |
| 144 | android:title="@string/verify_apps_over_usb_title" |
| 145 | android:summary="@string/verify_apps_over_usb_summary"/> |
| 146 | |
Lorenzo Colitti | 8fc9341 | 2015-03-16 23:45:55 +0900 | [diff] [blame] | 147 | <ListPreference |
| 148 | android:key="select_logd_size" |
| 149 | android:title="@string/select_logd_size_title" |
| 150 | android:dialogTitle="@string/select_logd_size_dialog_title" |
| 151 | android:entries="@array/select_logd_size_titles" |
| 152 | android:entryValues="@array/select_logd_size_values" /> |
| 153 | |
Mark Salyzyn | c8b1c3e | 2016-06-03 10:18:23 -0700 | [diff] [blame] | 154 | <ListPreference |
| 155 | android:key="select_logpersist" |
| 156 | android:title="@string/select_logpersist_title" |
| 157 | android:dialogTitle="@string/select_logpersist_dialog_title" |
| 158 | android:entries="@array/select_logpersist_titles" |
| 159 | android:entryValues="@array/select_logpersist_values" /> |
| 160 | |
Youhan Wang | 607ffe6 | 2017-02-09 09:50:39 -0800 | [diff] [blame] | 161 | <SwitchPreference |
Naveen Kalla | cac657f | 2017-09-19 18:36:03 -0700 | [diff] [blame] | 162 | android:key="connectivity_monitor_switch" |
| 163 | android:title="@string/connectivity_monitor_switch" |
| 164 | android:summary="@string/connectivity_monitor_switch_summary"/> |
Youhan Wang | 607ffe6 | 2017-02-09 09:50:39 -0800 | [diff] [blame] | 165 | |
Chien-Yu Chen | 9f713db | 2017-05-30 17:59:00 -0700 | [diff] [blame] | 166 | <SwitchPreference |
Emilian Peev | 6530b21 | 2017-09-06 16:47:08 +0100 | [diff] [blame] | 167 | android:key="camera_laser_sensor_switch" |
| 168 | android:title="@string/camera_laser_sensor_switch" /> |
| 169 | |
| 170 | <SwitchPreference |
Chien-Yu Chen | 9f713db | 2017-05-30 17:59:00 -0700 | [diff] [blame] | 171 | android:key="camera_hal_hdrplus_switch" |
| 172 | android:title="@string/camera_hal_hdrplus_switch" /> |
| 173 | |
Fan Zhang | 75cd1d2 | 2017-08-15 17:18:10 -0700 | [diff] [blame] | 174 | <Preference |
| 175 | android:key="feature_flags_dashboard" |
| 176 | android:title="@string/feature_flags_dashboard_title" |
| 177 | android:fragment="com.android.settings.development.featureflags.FeatureFlagsDashboard"/> |
| 178 | |
Lorenzo Colitti | 8fc9341 | 2015-03-16 23:45:55 +0900 | [diff] [blame] | 179 | </PreferenceCategory> |
| 180 | |
| 181 | <PreferenceCategory android:key="debug_networking_category" |
| 182 | android:title="@string/debug_networking_category"> |
| 183 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 184 | <SwitchPreference |
Chong Zhang | 6c60738 | 2013-06-06 12:42:24 -0700 | [diff] [blame] | 185 | android:key="wifi_display_certification" |
| 186 | android:title="@string/wifi_display_certification" |
| 187 | android:summary="@string/wifi_display_certification_summary"/> |
vandwalle | c9a6698 | 2014-05-21 15:21:16 -0700 | [diff] [blame] | 188 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 189 | <SwitchPreference |
vandwalle | c9a6698 | 2014-05-21 15:21:16 -0700 | [diff] [blame] | 190 | android:key="wifi_verbose_logging" |
Michael Bestas | 4566fc2 | 2014-11-24 01:52:38 +0200 | [diff] [blame] | 191 | android:title="@string/wifi_verbose_logging" |
vandwalle | 653cfee | 2014-05-22 13:09:20 -0700 | [diff] [blame] | 192 | android:summary="@string/wifi_verbose_logging_summary"/> |
vandwalle | c9a6698 | 2014-05-21 15:21:16 -0700 | [diff] [blame] | 193 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 194 | <SwitchPreference |
vandwalle | 5e7b3ad | 2014-06-18 19:01:13 -0700 | [diff] [blame] | 195 | android:key="wifi_aggressive_handover" |
Michael Bestas | 4566fc2 | 2014-11-24 01:52:38 +0200 | [diff] [blame] | 196 | android:title="@string/wifi_aggressive_handover" |
vandwalle | 5e7b3ad | 2014-06-18 19:01:13 -0700 | [diff] [blame] | 197 | android:summary="@string/wifi_aggressive_handover_summary"/> |
| 198 | |
Michael Bestas | 4566fc2 | 2014-11-24 01:52:38 +0200 | [diff] [blame] | 199 | <SwitchPreference |
vandwalle | 5e7b3ad | 2014-06-18 19:01:13 -0700 | [diff] [blame] | 200 | android:key="wifi_allow_scan_with_traffic" |
Michael Bestas | 4566fc2 | 2014-11-24 01:52:38 +0200 | [diff] [blame] | 201 | android:title="@string/wifi_allow_scan_with_traffic" |
vandwalle | 5e7b3ad | 2014-06-18 19:01:13 -0700 | [diff] [blame] | 202 | android:summary="@string/wifi_allow_scan_with_traffic_summary"/> |
| 203 | |
Lorenzo Colitti | 03c4a74 | 2017-07-05 00:29:44 +0900 | [diff] [blame] | 204 | <SwitchPreference |
Erik Kline | 54861e1 | 2015-04-30 12:58:08 +0900 | [diff] [blame] | 205 | android:key="mobile_data_always_on" |
| 206 | android:title="@string/mobile_data_always_on" |
| 207 | android:summary="@string/mobile_data_always_on_summary"/> |
| 208 | |
Lorenzo Colitti | 03c4a74 | 2017-07-05 00:29:44 +0900 | [diff] [blame] | 209 | <SwitchPreference |
| 210 | android:key="tethering_hardware_offload" |
| 211 | android:title="@string/tethering_hardware_offload" |
| 212 | android:summary="@string/tethering_hardware_offload_summary"/> |
| 213 | |
Mike Lockwood | 3f6ef34 | 2014-09-22 12:15:24 -0700 | [diff] [blame] | 214 | <ListPreference |
| 215 | android:key="select_usb_configuration" |
| 216 | android:title="@string/select_usb_configuration_title" |
| 217 | android:dialogTitle="@string/select_usb_configuration_dialog_title" |
| 218 | android:entries="@array/usb_configuration_titles" |
| 219 | android:entryValues="@array/usb_configuration_values" /> |
| 220 | |
Andre Eisenbach | 591c6c4 | 2016-02-08 15:40:23 -0800 | [diff] [blame] | 221 | <SwitchPreference |
Jack He | 19ba320 | 2017-05-31 18:37:28 -0700 | [diff] [blame] | 222 | android:key="bluetooth_show_devices_without_names" |
| 223 | android:title="@string/bluetooth_show_devices_without_names" |
| 224 | android:summary="@string/bluetooth_show_devices_without_names_summary"/> |
| 225 | |
| 226 | <SwitchPreference |
Andre Eisenbach | 591c6c4 | 2016-02-08 15:40:23 -0800 | [diff] [blame] | 227 | android:key="bluetooth_disable_absolute_volume" |
| 228 | android:title="@string/bluetooth_disable_absolute_volume" |
| 229 | android:summary="@string/bluetooth_disable_absolute_volume_summary"/> |
Pavlin Radoslavov | c65956e | 2017-01-05 10:52:21 -0800 | [diff] [blame] | 230 | |
Jack He | 37fb338 | 2017-03-31 10:51:22 -0700 | [diff] [blame] | 231 | <SwitchPreference |
| 232 | android:key="bluetooth_enable_inband_ringing" |
| 233 | android:title="@string/bluetooth_enable_inband_ringing" |
| 234 | android:summary="@string/bluetooth_enable_inband_ringing_summary"/> |
| 235 | |
Pavlin Radoslavov | c65956e | 2017-01-05 10:52:21 -0800 | [diff] [blame] | 236 | <ListPreference |
Ajay Panicker | da2723a | 2017-03-20 11:34:54 -0700 | [diff] [blame] | 237 | android:key="bluetooth_select_avrcp_version" |
| 238 | android:title="@string/bluetooth_select_avrcp_version_string" |
| 239 | android:dialogTitle="@string/bluetooth_select_avrcp_version_dialog_title" |
| 240 | android:entries="@array/bluetooth_avrcp_versions" |
| 241 | android:entryValues="@array/bluetooth_avrcp_version_values" /> |
| 242 | |
| 243 | <ListPreference |
Pavlin Radoslavov | c65956e | 2017-01-05 10:52:21 -0800 | [diff] [blame] | 244 | android:key="bluetooth_select_a2dp_codec" |
| 245 | android:title="@string/bluetooth_select_a2dp_codec_type" |
| 246 | android:dialogTitle="@string/bluetooth_select_a2dp_codec_type_dialog_title" |
| 247 | android:entries="@array/bluetooth_a2dp_codec_titles" |
| 248 | android:entryValues="@array/bluetooth_a2dp_codec_values" /> |
| 249 | |
| 250 | <ListPreference |
| 251 | android:key="bluetooth_select_a2dp_sample_rate" |
| 252 | android:title="@string/bluetooth_select_a2dp_codec_sample_rate" |
| 253 | android:dialogTitle="@string/bluetooth_select_a2dp_codec_sample_rate_dialog_title" |
| 254 | android:entries="@array/bluetooth_a2dp_codec_sample_rate_titles" |
| 255 | android:entryValues="@array/bluetooth_a2dp_codec_sample_rate_values" /> |
| 256 | |
| 257 | <ListPreference |
| 258 | android:key="bluetooth_select_a2dp_bits_per_sample" |
| 259 | android:title="@string/bluetooth_select_a2dp_codec_bits_per_sample" |
| 260 | android:dialogTitle="@string/bluetooth_select_a2dp_codec_bits_per_sample_dialog_title" |
| 261 | android:entries="@array/bluetooth_a2dp_codec_bits_per_sample_titles" |
| 262 | android:entryValues="@array/bluetooth_a2dp_codec_bits_per_sample_values" /> |
| 263 | |
| 264 | <ListPreference |
| 265 | android:key="bluetooth_select_a2dp_channel_mode" |
| 266 | android:title="@string/bluetooth_select_a2dp_codec_channel_mode" |
| 267 | android:dialogTitle="@string/bluetooth_select_a2dp_codec_channel_mode_dialog_title" |
| 268 | android:entries="@array/bluetooth_a2dp_codec_channel_mode_titles" |
| 269 | android:entryValues="@array/bluetooth_a2dp_codec_channel_mode_values" /> |
| 270 | |
| 271 | <ListPreference |
| 272 | android:key="bluetooth_select_a2dp_ldac_playback_quality" |
| 273 | android:title="@string/bluetooth_select_a2dp_codec_ldac_playback_quality" |
| 274 | android:dialogTitle="@string/bluetooth_select_a2dp_codec_ldac_playback_quality_dialog_title" |
| 275 | android:entries="@array/bluetooth_a2dp_codec_ldac_playback_quality_titles" |
| 276 | android:entryValues="@array/bluetooth_a2dp_codec_ldac_playback_quality_values" /> |
| 277 | |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 278 | </PreferenceCategory> |
| 279 | |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 280 | <PreferenceCategory android:key="debug_input_category" |
| 281 | android:title="@string/debug_input_category"> |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 282 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 283 | <SwitchPreference |
Jeff Brown | f407700 | 2011-08-26 17:10:32 -0700 | [diff] [blame] | 284 | android:key="show_touches" |
| 285 | android:title="@string/show_touches" |
| 286 | android:summary="@string/show_touches_summary"/> |
| 287 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 288 | <SwitchPreference |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 289 | android:key="pointer_location" |
| 290 | android:title="@string/pointer_location" |
| 291 | android:summary="@string/pointer_location_summary"/> |
| 292 | |
| 293 | </PreferenceCategory> |
| 294 | |
| 295 | <PreferenceCategory android:key="debug_drawing_category" |
| 296 | android:title="@string/debug_drawing_category"> |
| 297 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 298 | <SwitchPreference |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 299 | android:key="show_screen_updates" |
| 300 | android:title="@string/show_screen_updates" |
| 301 | android:summary="@string/show_screen_updates_summary"/> |
Romain Guy | c1fa3e6 | 2012-04-27 15:27:54 -0700 | [diff] [blame] | 302 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 303 | <SwitchPreference |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 304 | android:key="debug_layout" |
| 305 | android:title="@string/debug_layout" |
| 306 | android:summary="@string/debug_layout_summary"/> |
| 307 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 308 | <SwitchPreference |
Amith Yamasani | df1eda8 | 2013-08-07 20:14:44 -0700 | [diff] [blame] | 309 | android:key="force_rtl_layout_all_locales" |
| 310 | android:title="@string/force_rtl_layout_all_locales" |
| 311 | android:summary="@string/force_rtl_layout_all_locales_summary"/> |
| 312 | |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 313 | <ListPreference |
| 314 | android:key="window_animation_scale" |
| 315 | android:title="@string/window_animation_scale_title" |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 316 | android:entries="@array/window_animation_scale_entries" |
| 317 | android:entryValues="@array/window_animation_scale_values" /> |
| 318 | |
| 319 | <ListPreference |
| 320 | android:key="transition_animation_scale" |
| 321 | android:title="@string/transition_animation_scale_title" |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 322 | android:entries="@array/transition_animation_scale_entries" |
| 323 | android:entryValues="@array/transition_animation_scale_values" /> |
| 324 | |
Chet Haase | b29e7870 | 2012-02-01 15:10:12 -0800 | [diff] [blame] | 325 | <ListPreference |
| 326 | android:key="animator_duration_scale" |
| 327 | android:title="@string/animator_duration_scale_title" |
Chet Haase | b29e7870 | 2012-02-01 15:10:12 -0800 | [diff] [blame] | 328 | android:entries="@array/animator_duration_scale_entries" |
| 329 | android:entryValues="@array/animator_duration_scale_values" /> |
| 330 | |
Jeff Brown | b2b54ee | 2012-08-29 02:33:06 -0700 | [diff] [blame] | 331 | <ListPreference |
| 332 | android:key="overlay_display_devices" |
| 333 | android:title="@string/overlay_display_devices_title" |
Jeff Brown | b2b54ee | 2012-08-29 02:33:06 -0700 | [diff] [blame] | 334 | android:entries="@array/overlay_display_devices_entries" |
| 335 | android:entryValues="@array/overlay_display_devices_values" /> |
| 336 | |
Jason Monk | 449f972 | 2016-04-05 15:45:27 -0400 | [diff] [blame] | 337 | <com.android.settings.display.DensityPreference |
| 338 | android:key="density" |
| 339 | android:title="@string/developer_smallest_width" /> |
| 340 | |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 341 | </PreferenceCategory> |
| 342 | |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 343 | <PreferenceCategory android:key="debug_hw_drawing_category" |
| 344 | android:title="@string/debug_hw_drawing_category"> |
| 345 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 346 | <SwitchPreference |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 347 | android:key="force_hw_ui" |
| 348 | android:title="@string/force_hw_ui" |
| 349 | android:summary="@string/force_hw_ui_summary"/> |
| 350 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 351 | <SwitchPreference |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 352 | android:key="show_hw_screen_udpates" |
| 353 | android:title="@string/show_hw_screen_updates" |
| 354 | android:summary="@string/show_hw_screen_updates_summary"/> |
| 355 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 356 | <SwitchPreference |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 357 | android:key="show_hw_layers_udpates" |
| 358 | android:title="@string/show_hw_layers_updates" |
| 359 | android:summary="@string/show_hw_layers_updates_summary"/> |
| 360 | |
Romain Guy | eb90fc5 | 2013-05-03 17:38:38 -0700 | [diff] [blame] | 361 | <ListPreference |
| 362 | android:key="debug_hw_overdraw" |
| 363 | android:title="@string/debug_hw_overdraw" |
Romain Guy | eb90fc5 | 2013-05-03 17:38:38 -0700 | [diff] [blame] | 364 | android:entries="@array/debug_hw_overdraw_entries" |
| 365 | android:entryValues="@array/debug_hw_overdraw_values" /> |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 366 | |
| 367 | <ListPreference |
| 368 | android:key="show_non_rect_clip" |
| 369 | android:title="@string/show_non_rect_clip" |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 370 | android:entries="@array/show_non_rect_clip_entries" |
| 371 | android:entryValues="@array/show_non_rect_clip_values" /> |
| 372 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 373 | <SwitchPreference |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 374 | android:key="force_msaa" |
| 375 | android:title="@string/force_msaa" |
| 376 | android:summary="@string/force_msaa_summary"/> |
| 377 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 378 | <SwitchPreference |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 379 | android:key="disable_overlays" |
| 380 | android:title="@string/disable_overlays" |
| 381 | android:summary="@string/disable_overlays_summary"/> |
| 382 | |
Alan Viverette | fc0ab21 | 2013-10-02 16:36:33 -0700 | [diff] [blame] | 383 | <ListPreference |
| 384 | android:entries="@array/simulate_color_space_entries" |
| 385 | android:entryValues="@array/simulate_color_space_values" |
| 386 | android:key="simulate_color_space" |
Alan Viverette | fc0ab21 | 2013-10-02 16:36:33 -0700 | [diff] [blame] | 387 | android:summary="%s" |
| 388 | android:title="@string/simulate_color_space" /> |
| 389 | |
Derek Sollenberger | f91b036 | 2017-02-14 11:36:17 -0500 | [diff] [blame] | 390 | <ListPreference |
| 391 | android:key="debug_hw_renderer" |
| 392 | android:title="@string/debug_hw_renderer" |
| 393 | android:entries="@array/debug_hw_renderer_entries" |
| 394 | android:entryValues="@array/debug_hw_renderer_values" /> |
| 395 | |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 396 | </PreferenceCategory> |
| 397 | |
Lajos Molnar | 6b2f7c4 | 2014-03-28 09:48:58 -0700 | [diff] [blame] | 398 | <PreferenceCategory android:key="media_category" |
| 399 | android:title="@string/media_category"> |
| 400 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 401 | <SwitchPreference |
Glenn Kasten | ca54234 | 2014-07-22 09:14:08 -0700 | [diff] [blame] | 402 | android:key="usb_audio" |
| 403 | android:title="@string/usb_audio_disable_routing" |
| 404 | android:summary="@string/usb_audio_disable_routing_summary" /> |
| 405 | |
Lajos Molnar | 6b2f7c4 | 2014-03-28 09:48:58 -0700 | [diff] [blame] | 406 | </PreferenceCategory> |
| 407 | |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 408 | <PreferenceCategory android:key="debug_monitoring_category" |
| 409 | android:title="@string/debug_monitoring_category"> |
| 410 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 411 | <SwitchPreference |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 412 | android:key="strict_mode" |
| 413 | android:title="@string/strict_mode" |
| 414 | android:summary="@string/strict_mode_summary"/> |
| 415 | |
Romain Guy | 7061848 | 2013-01-07 11:20:49 -0800 | [diff] [blame] | 416 | <ListPreference |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 417 | android:key="track_frame_time" |
| 418 | android:title="@string/track_frame_time" |
Romain Guy | 7061848 | 2013-01-07 11:20:49 -0800 | [diff] [blame] | 419 | android:entries="@array/track_frame_time_entries" |
| 420 | android:entryValues="@array/track_frame_time_values" /> |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 421 | |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 422 | </PreferenceCategory> |
| 423 | |
| 424 | <PreferenceCategory android:key="debug_applications_category" |
| 425 | android:title="@string/debug_applications_category"> |
| 426 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 427 | <SwitchPreference |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 428 | android:key="immediately_destroy_activities" |
| 429 | android:title="@string/immediately_destroy_activities" |
| 430 | android:summary="@string/immediately_destroy_activities_summary"/> |
| 431 | |
| 432 | <ListPreference |
| 433 | android:key="app_process_limit" |
| 434 | android:title="@string/app_process_limit_title" |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 435 | android:entries="@array/app_process_limit_entries" |
| 436 | android:entryValues="@array/app_process_limit_values" /> |
| 437 | |
Fan Zhang | f5bd885 | 2017-05-17 17:22:09 -0700 | [diff] [blame] | 438 | |
Dianne Hackborn | f467c0a | 2015-12-07 16:36:09 -0800 | [diff] [blame] | 439 | <Preference |
| 440 | android:key="background_check" |
Fan Zhang | c6ca314 | 2017-02-14 15:02:35 -0800 | [diff] [blame] | 441 | android:fragment="com.android.settings.applications.BackgroundCheckSummary" |
Dianne Hackborn | f467c0a | 2015-12-07 16:36:09 -0800 | [diff] [blame] | 442 | android:title="@string/background_check_pref" /> |
Fan Zhang | f5bd885 | 2017-05-17 17:22:09 -0700 | [diff] [blame] | 443 | |
Dianne Hackborn | f467c0a | 2015-12-07 16:36:09 -0800 | [diff] [blame] | 444 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 445 | <SwitchPreference |
Dianne Hackborn | d5119bd | 2011-08-02 15:08:04 -0700 | [diff] [blame] | 446 | android:key="show_all_anrs" |
| 447 | android:title="@string/show_all_anrs" |
| 448 | android:summary="@string/show_all_anrs_summary"/> |
| 449 | |
Geoffrey Pitsch | e18fd90 | 2017-05-11 12:58:23 -0400 | [diff] [blame] | 450 | <SwitchPreference |
| 451 | android:key="show_notification_channel_warnings" |
| 452 | android:title="@string/show_notification_channel_warnings" |
| 453 | android:summary="@string/show_notification_channel_warnings_summary"/> |
| 454 | |
Amith Yamasani | 50e32b0 | 2015-05-13 18:18:16 -0700 | [diff] [blame] | 455 | <Preference |
| 456 | android:key="inactive_apps" |
Fan Zhang | c6ca314 | 2017-02-14 15:02:35 -0800 | [diff] [blame] | 457 | android:title="@string/inactive_apps_title" |
| 458 | android:fragment="com.android.settings.fuelgauge.InactiveApps"/> |
Amith Yamasani | 50e32b0 | 2015-05-13 18:18:16 -0700 | [diff] [blame] | 459 | |
Todd Kennedy | 9716282 | 2015-08-07 14:39:08 -0700 | [diff] [blame] | 460 | <SwitchPreference |
| 461 | android:key="force_allow_on_external" |
| 462 | android:title="@string/force_allow_on_external" |
| 463 | android:summary="@string/force_allow_on_external_summary"/> |
| 464 | |
Jorim Jaggi | b12e9ad | 2015-10-27 10:54:53 +0100 | [diff] [blame] | 465 | <SwitchPreference |
| 466 | android:key="force_resizable_activities" |
| 467 | android:title="@string/force_resizable_activities" |
| 468 | android:summary="@string/force_resizable_activities_summary"/> |
Makoto Onuki | 0651701 | 2016-07-08 09:17:25 -0700 | [diff] [blame] | 469 | |
Bryce Lee | 7f4ae33 | 2017-09-28 16:07:13 -0700 | [diff] [blame^] | 470 | <SwitchPreference |
| 471 | android:key="enable_freeform_support" |
| 472 | android:title="@string/enable_freeform_support" |
| 473 | android:summary="@string/enable_freeform_support_summary"/> |
| 474 | |
Makoto Onuki | 0651701 | 2016-07-08 09:17:25 -0700 | [diff] [blame] | 475 | <Preference |
| 476 | android:key="reset_shortcut_manager_throttling" |
| 477 | android:title="@string/reset_shortcut_manager_throttling" /> |
Svetoslav Ganov | 43af40b | 2012-09-20 19:15:29 -0700 | [diff] [blame] | 478 | </PreferenceCategory> |
Svetoslav Ganov | decf36e | 2012-08-06 10:55:11 -0700 | [diff] [blame] | 479 | |
Doris Ling | 3d9224f | 2016-12-12 16:20:22 -0800 | [diff] [blame] | 480 | <PreferenceCategory |
| 481 | android:key="dashboard_tile_placeholder" |
| 482 | android:order="200"/> |
| 483 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 484 | </PreferenceScreen> |