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" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 18 | xmlns:settings="http://schemas.android.com/apk/res-auto" |
| 19 | android:key="development_prefs_screen" |
| 20 | android:title="@string/development_settings_title"> |
jeffreyhuang | c57f18d | 2017-10-20 14:10:25 -0700 | [diff] [blame] | 21 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 22 | <PreferenceCategory |
| 23 | android:key="debug_misc_category" |
| 24 | android:order="100"> |
jeffreyhuang | c57f18d | 2017-10-20 14:10:25 -0700 | [diff] [blame] | 25 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 26 | <Preference |
| 27 | android:key="memory" |
| 28 | android:icon="@drawable/ic_settings_memory" |
| 29 | android:title="@string/memory_settings_title" |
| 30 | android:summary="@string/summary_placeholder" |
| 31 | android:fragment="com.android.settings.applications.ProcessStatsSummary" /> |
| 32 | |
| 33 | <com.android.settings.BugreportPreference |
Dianne Hackborn | fd8c315 | 2012-07-13 14:26:23 -0700 | [diff] [blame] | 34 | android:key="bugreport" |
Dianne Hackborn | 2d803a3 | 2012-08-07 11:26:32 -0700 | [diff] [blame] | 35 | android:title="@*android:string/bugreport_title" |
| 36 | android:dialogTitle="@*android:string/bugreport_title" /> |
Dianne Hackborn | fd8c315 | 2012-07-13 14:26:23 -0700 | [diff] [blame] | 37 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 38 | <Preference |
Christopher Tate | fac0ea7 | 2011-08-12 17:22:41 -0700 | [diff] [blame] | 39 | android:key="local_backup_password" |
| 40 | android:title="@string/local_backup_password_title" |
| 41 | android:summary="@string/local_backup_password_summary_none" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 42 | android:persistent="false"> |
| 43 | <intent |
Christopher Tate | fac0ea7 | 2011-08-12 17:22:41 -0700 | [diff] [blame] | 44 | android:action="android.settings.privacy.SET_FULL_BACKUP_PASSWORD" |
| 45 | android:targetPackage="com.android.settings" |
| 46 | android:targetClass="com.android.settings.SetFullBackupPassword" /> |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 47 | </Preference> |
Christopher Tate | fac0ea7 | 2011-08-12 17:22:41 -0700 | [diff] [blame] | 48 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 49 | <com.android.settingslib.RestrictedSwitchPreference |
| 50 | android:key="keep_screen_on" |
| 51 | android:title="@string/keep_screen_on" |
| 52 | android:summary="@string/keep_screen_on_summary" |
| 53 | settings:useAdditionalSummary="true" /> |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 54 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 55 | <ListPreference |
| 56 | android:key="hdcp_checking" |
| 57 | android:title="@string/hdcp_checking_title" |
| 58 | android:dialogTitle="@string/hdcp_checking_dialog_title" |
| 59 | android:entries="@array/hdcp_checking_titles" |
| 60 | android:entryValues="@array/hdcp_checking_values" /> |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 61 | |
Ajay Panicker | fc4d53c | 2018-11-30 15:26:02 -0800 | [diff] [blame] | 62 | <ListPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 63 | android:key="bt_hci_snoop_log" |
| 64 | android:title="@string/bt_hci_snoop_log" |
Ajay Panicker | fc4d53c | 2018-11-30 15:26:02 -0800 | [diff] [blame] | 65 | android:dialogTitle="@string/bt_hci_snoop_log_summary" |
| 66 | android:entries="@array/bt_hci_snoop_log_entries" |
| 67 | android:entryValues="@array/bt_hci_snoop_log_values" /> |
Zhihai Xu | 84bbb54 | 2013-07-26 13:33:16 -0700 | [diff] [blame] | 68 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 69 | <com.android.settingslib.RestrictedSwitchPreference |
| 70 | android:key="oem_unlock_enable" |
| 71 | android:title="@string/oem_unlock_enable" |
| 72 | android:summary="@string/oem_unlock_enable_summary" |
| 73 | settings:useAdditionalSummary="true" /> |
Andres Morales | ce249fe | 2014-07-07 16:58:16 -0700 | [diff] [blame] | 74 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 75 | <Preference |
| 76 | android:key="running_apps" |
| 77 | android:title="@string/runningservices_settings_title" |
| 78 | android:summary="@string/runningservices_settings_summary" |
| 79 | android:fragment="com.android.settings.applications.RunningServices" /> |
Jason Monk | 5dc70b1 | 2015-03-25 11:03:59 -0400 | [diff] [blame] | 80 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 81 | <Preference |
| 82 | android:key="convert_to_file_encryption" |
| 83 | android:title="@string/convert_to_file_encryption" |
| 84 | android:summary="@string/convert_to_file_encryption_enabled" |
| 85 | android:fragment="com.android.settings.applications.ConvertToFbe" /> |
Paul Lawrence | acbac8c | 2015-11-02 12:42:42 -0800 | [diff] [blame] | 86 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 87 | <com.android.settings.development.ColorModePreference |
| 88 | android:key="picture_color_mode" |
| 89 | android:title="@string/picture_color_mode" |
| 90 | android:summary="@string/picture_color_mode_desc" /> |
Jason Monk | 16a8e8d | 2015-09-23 16:08:13 -0400 | [diff] [blame] | 91 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 92 | <Preference android:key="select_webview_provider" |
| 93 | android:title="@string/select_webview_provider_title" |
| 94 | android:dialogTitle="@string/select_webview_provider_dialog_title" |
| 95 | android:fragment="com.android.settings.webview.WebViewAppPicker" /> |
Gustav Sennton | 0d54bbf | 2015-10-30 18:55:32 +0000 | [diff] [blame] | 96 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 97 | <SwitchPreference |
| 98 | android:key="color_temperature" |
| 99 | android:title="@string/color_temperature" |
| 100 | android:summary="@string/color_temperature_desc" /> |
Steve Pfetsch | b3fef37 | 2016-01-13 17:07:35 -0800 | [diff] [blame] | 101 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 102 | <SwitchPreference |
| 103 | android:key="ota_disable_automatic_update" |
Tao Bao | 8271220 | 2018-03-22 18:47:57 -0700 | [diff] [blame] | 104 | android:title="@string/ota_disable_automatic_update" |
| 105 | android:summary="@string/ota_disable_automatic_update_summary" /> |
Tao Bao | 45a2c16 | 2016-02-15 20:03:22 -0800 | [diff] [blame] | 106 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 107 | <Preference |
| 108 | android:key="demo_mode" |
| 109 | android:title="@string/demo_mode"> |
| 110 | <intent android:action="com.android.settings.action.DEMO_MODE" /> |
| 111 | </Preference> |
Jason Monk | fb0d8fb | 2016-04-12 13:09:13 -0400 | [diff] [blame] | 112 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 113 | <Preference |
| 114 | android:key="quick_settings_tiles" |
| 115 | android:title="@string/quick_settings_developer_tiles" |
Fan Zhang | d3b8487 | 2019-03-15 14:11:39 -0700 | [diff] [blame^] | 116 | android:fragment="com.android.settings.development.qstile.DevelopmentTileConfigFragment" |
| 117 | settings:searchable="false" /> |
Vishwath Mohan | 8f53ad0 | 2019-02-02 11:18:30 -0800 | [diff] [blame] | 118 | |
| 119 | <!-- Configure trust agent behavior --> |
| 120 | <SwitchPreference |
| 121 | android:key="security_setting_trust_agents_extend_unlock" |
| 122 | android:title="@string/trust_agents_extend_unlock_title" |
| 123 | android:summary="@string/trust_agents_extend_unlock_summary" /> |
| 124 | |
| 125 | <SwitchPreference |
| 126 | android:key="security_setting_trust_lost_locks_screen" |
| 127 | android:title="@string/trust_lost_locks_screen_title" |
| 128 | android:summary="@string/trust_lost_locks_screen_summary" /> |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 129 | </PreferenceCategory> |
Sunny Goyal | c960751 | 2017-02-06 15:19:00 -0800 | [diff] [blame] | 130 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 131 | <PreferenceCategory |
| 132 | android:key="debug_debugging_category" |
| 133 | android:title="@string/debug_debugging_category" |
| 134 | android:order="200"> |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 135 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 136 | <SwitchPreference |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 137 | android:key="enable_adb" |
| 138 | android:title="@string/enable_adb" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 139 | android:summary="@string/enable_adb_summary" /> |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 140 | |
Benoit Goby | 0761ffc | 2012-12-21 16:43:20 -0800 | [diff] [blame] | 141 | <Preference android:key="clear_adb_keys" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 142 | android:title="@string/clear_adb_keys" /> |
Benoit Goby | 0761ffc | 2012-12-21 16:43:20 -0800 | [diff] [blame] | 143 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 144 | <SwitchPreference |
Jeff Sharkey | d390b70 | 2013-03-05 23:31:45 -0800 | [diff] [blame] | 145 | android:key="enable_terminal" |
| 146 | android:title="@string/enable_terminal_title" |
| 147 | android:summary="@string/enable_terminal_summary" /> |
| 148 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 149 | <SwitchPreference |
Dianne Hackborn | 2d803a3 | 2012-08-07 11:26:32 -0700 | [diff] [blame] | 150 | android:key="bugreport_in_power" |
| 151 | android:title="@string/bugreport_in_power" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 152 | android:summary="@string/bugreport_in_power_summary" /> |
Dianne Hackborn | 2d803a3 | 2012-08-07 11:26:32 -0700 | [diff] [blame] | 153 | |
Fan Zhang | 1c118b5 | 2016-12-09 13:04:24 -0800 | [diff] [blame] | 154 | <Preference android:key="mock_location_app" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 155 | android:title="@string/mock_location_app" /> |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 156 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 157 | <SwitchPreference |
gomo | e17c940 | 2017-12-13 03:44:09 -0800 | [diff] [blame] | 158 | android:key="enable_gnss_raw_meas_full_tracking" |
| 159 | android:title="@string/enable_gnss_raw_meas_full_tracking" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 160 | android:summary="@string/enable_gnss_raw_meas_full_tracking_summary" /> |
gomo | e17c940 | 2017-12-13 03:44:09 -0800 | [diff] [blame] | 161 | |
| 162 | <SwitchPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 163 | android:key="debug_view_attributes" |
| 164 | android:title="@string/debug_view_attributes" /> |
Jon Miranda | 0b65294 | 2014-08-12 09:08:29 -0700 | [diff] [blame] | 165 | |
Fan Zhang | 1c118b5 | 2016-12-09 13:04:24 -0800 | [diff] [blame] | 166 | <Preference android:key="debug_app" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 167 | android:title="@string/debug_app" /> |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 168 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 169 | <SwitchPreference |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 170 | android:key="wait_for_debugger" |
| 171 | android:title="@string/wait_for_debugger" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 172 | android:summary="@string/wait_for_debugger_summary" /> |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 173 | |
Pavel Grafov | 5d567c4 | 2017-04-26 11:54:13 +0100 | [diff] [blame] | 174 | <com.android.settingslib.RestrictedSwitchPreference |
rich cannings | f042114 | 2012-09-25 16:20:36 -0700 | [diff] [blame] | 175 | android:key="verify_apps_over_usb" |
| 176 | android:title="@string/verify_apps_over_usb_title" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 177 | android:summary="@string/verify_apps_over_usb_summary" /> |
rich cannings | f042114 | 2012-09-25 16:20:36 -0700 | [diff] [blame] | 178 | |
Alex Buynytskyy | 787a92c | 2019-01-25 16:22:00 -0800 | [diff] [blame] | 179 | <SwitchPreference |
| 180 | android:key="art_verifier_for_debuggable" |
| 181 | android:title="@string/art_verifier_for_debuggable_title" |
| 182 | android:summary="@string/art_verifier_for_debuggable_summary" /> |
| 183 | |
Lorenzo Colitti | 8fc9341 | 2015-03-16 23:45:55 +0900 | [diff] [blame] | 184 | <ListPreference |
| 185 | android:key="select_logd_size" |
| 186 | android:title="@string/select_logd_size_title" |
| 187 | android:dialogTitle="@string/select_logd_size_dialog_title" |
| 188 | android:entries="@array/select_logd_size_titles" |
| 189 | android:entryValues="@array/select_logd_size_values" /> |
| 190 | |
Mark Salyzyn | c8b1c3e | 2016-06-03 10:18:23 -0700 | [diff] [blame] | 191 | <ListPreference |
| 192 | android:key="select_logpersist" |
| 193 | android:title="@string/select_logpersist_title" |
| 194 | android:dialogTitle="@string/select_logpersist_dialog_title" |
| 195 | android:entries="@array/select_logpersist_titles" |
| 196 | android:entryValues="@array/select_logpersist_values" /> |
| 197 | |
Youhan Wang | 607ffe6 | 2017-02-09 09:50:39 -0800 | [diff] [blame] | 198 | <SwitchPreference |
Emilian Peev | 6530b21 | 2017-09-06 16:47:08 +0100 | [diff] [blame] | 199 | android:key="camera_laser_sensor_switch" |
| 200 | android:title="@string/camera_laser_sensor_switch" /> |
| 201 | |
Fan Zhang | 75cd1d2 | 2017-08-15 17:18:10 -0700 | [diff] [blame] | 202 | <Preference |
| 203 | android:key="feature_flags_dashboard" |
| 204 | android:title="@string/feature_flags_dashboard_title" |
Fan Zhang | a79c377 | 2018-08-14 16:25:54 -0700 | [diff] [blame] | 205 | android:fragment="com.android.settings.development.featureflags.FeatureFlagsDashboard" |
| 206 | settings:searchable="false" /> |
Fan Zhang | 75cd1d2 | 2017-08-15 17:18:10 -0700 | [diff] [blame] | 207 | |
Cody Northrop | 4e7f57a | 2017-10-25 14:07:48 -0600 | [diff] [blame] | 208 | <SwitchPreference |
| 209 | android:key="enable_gpu_debug_layers" |
| 210 | android:title="@string/enable_gpu_debug_layers" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 211 | android:summary="@string/enable_gpu_debug_layers_summary" /> |
Cody Northrop | 4e7f57a | 2017-10-25 14:07:48 -0600 | [diff] [blame] | 212 | |
Yiwei Zhang | c81a03b | 2018-12-28 11:38:11 +0800 | [diff] [blame] | 213 | <Preference |
Yiwei Zhang | bf854fc | 2019-01-24 14:04:58 -0800 | [diff] [blame] | 214 | android:key="game_driver_dashboard" |
| 215 | android:title="@string/game_driver_dashboard_title" |
| 216 | android:summary="@string/game_driver_dashboard_summary" |
| 217 | android:fragment="com.android.settings.development.gamedriver.GameDriverDashboard" |
Yiwei Zhang | 83c030f | 2018-12-29 08:52:31 +0800 | [diff] [blame] | 218 | settings:searchable="false" /> |
Yiwei Zhang | c81a03b | 2018-12-28 11:38:11 +0800 | [diff] [blame] | 219 | |
Lorenzo Colitti | 8fc9341 | 2015-03-16 23:45:55 +0900 | [diff] [blame] | 220 | </PreferenceCategory> |
| 221 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 222 | <PreferenceCategory |
| 223 | android:key="dashboard_tile_placeholder" |
| 224 | android:order="300" /> |
| 225 | |
| 226 | <PreferenceCategory |
| 227 | android:key="debug_networking_category" |
| 228 | android:title="@string/debug_networking_category" |
| 229 | android:order="400"> |
Lorenzo Colitti | 8fc9341 | 2015-03-16 23:45:55 +0900 | [diff] [blame] | 230 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 231 | <SwitchPreference |
Chong Zhang | 6c60738 | 2013-06-06 12:42:24 -0700 | [diff] [blame] | 232 | android:key="wifi_display_certification" |
| 233 | android:title="@string/wifi_display_certification" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 234 | android:summary="@string/wifi_display_certification_summary" /> |
vandwalle | c9a6698 | 2014-05-21 15:21:16 -0700 | [diff] [blame] | 235 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 236 | <SwitchPreference |
vandwalle | c9a6698 | 2014-05-21 15:21:16 -0700 | [diff] [blame] | 237 | android:key="wifi_verbose_logging" |
Michael Bestas | 4566fc2 | 2014-11-24 01:52:38 +0200 | [diff] [blame] | 238 | android:title="@string/wifi_verbose_logging" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 239 | android:summary="@string/wifi_verbose_logging_summary" /> |
vandwalle | c9a6698 | 2014-05-21 15:21:16 -0700 | [diff] [blame] | 240 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 241 | <SwitchPreference |
Erik Kline | 54861e1 | 2015-04-30 12:58:08 +0900 | [diff] [blame] | 242 | android:key="mobile_data_always_on" |
| 243 | android:title="@string/mobile_data_always_on" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 244 | android:summary="@string/mobile_data_always_on_summary" /> |
Erik Kline | 54861e1 | 2015-04-30 12:58:08 +0900 | [diff] [blame] | 245 | |
Lorenzo Colitti | 03c4a74 | 2017-07-05 00:29:44 +0900 | [diff] [blame] | 246 | <SwitchPreference |
| 247 | android:key="tethering_hardware_offload" |
| 248 | android:title="@string/tethering_hardware_offload" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 249 | android:summary="@string/tethering_hardware_offload_summary" /> |
Lorenzo Colitti | 03c4a74 | 2017-07-05 00:29:44 +0900 | [diff] [blame] | 250 | |
Jerry Zhang | 5024717 | 2018-02-12 18:26:15 -0800 | [diff] [blame] | 251 | <Preference |
| 252 | android:key="default_usb_configuration" |
| 253 | android:fragment="com.android.settings.connecteddevice.usb.UsbDefaultFragment" |
| 254 | android:icon="@drawable/ic_usb" |
| 255 | android:title="@string/usb_default_label"/> |
Mike Lockwood | 3f6ef34 | 2014-09-22 12:15:24 -0700 | [diff] [blame] | 256 | |
Andre Eisenbach | 591c6c4 | 2016-02-08 15:40:23 -0800 | [diff] [blame] | 257 | <SwitchPreference |
Jack He | 19ba320 | 2017-05-31 18:37:28 -0700 | [diff] [blame] | 258 | android:key="bluetooth_show_devices_without_names" |
| 259 | android:title="@string/bluetooth_show_devices_without_names" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 260 | android:summary="@string/bluetooth_show_devices_without_names_summary" /> |
Jack He | 19ba320 | 2017-05-31 18:37:28 -0700 | [diff] [blame] | 261 | |
| 262 | <SwitchPreference |
Andre Eisenbach | 591c6c4 | 2016-02-08 15:40:23 -0800 | [diff] [blame] | 263 | android:key="bluetooth_disable_absolute_volume" |
| 264 | android:title="@string/bluetooth_disable_absolute_volume" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 265 | android:summary="@string/bluetooth_disable_absolute_volume_summary" /> |
Pavlin Radoslavov | c65956e | 2017-01-05 10:52:21 -0800 | [diff] [blame] | 266 | |
Chienyuan | ea14ef8 | 2018-05-16 20:52:00 +0800 | [diff] [blame] | 267 | <SwitchPreference |
| 268 | android:key="bluetooth_disable_a2dp_hw_offload" |
| 269 | android:title="@string/bluetooth_disable_a2dp_hw_offload" /> |
| 270 | |
Pavlin Radoslavov | c65956e | 2017-01-05 10:52:21 -0800 | [diff] [blame] | 271 | <ListPreference |
Ajay Panicker | da2723a | 2017-03-20 11:34:54 -0700 | [diff] [blame] | 272 | android:key="bluetooth_select_avrcp_version" |
| 273 | android:title="@string/bluetooth_select_avrcp_version_string" |
| 274 | android:dialogTitle="@string/bluetooth_select_avrcp_version_dialog_title" |
| 275 | android:entries="@array/bluetooth_avrcp_versions" |
| 276 | android:entryValues="@array/bluetooth_avrcp_version_values" /> |
| 277 | |
| 278 | <ListPreference |
Pavlin Radoslavov | c65956e | 2017-01-05 10:52:21 -0800 | [diff] [blame] | 279 | android:key="bluetooth_select_a2dp_codec" |
| 280 | android:title="@string/bluetooth_select_a2dp_codec_type" |
| 281 | android:dialogTitle="@string/bluetooth_select_a2dp_codec_type_dialog_title" |
| 282 | android:entries="@array/bluetooth_a2dp_codec_titles" |
| 283 | android:entryValues="@array/bluetooth_a2dp_codec_values" /> |
| 284 | |
| 285 | <ListPreference |
| 286 | android:key="bluetooth_select_a2dp_sample_rate" |
| 287 | android:title="@string/bluetooth_select_a2dp_codec_sample_rate" |
| 288 | android:dialogTitle="@string/bluetooth_select_a2dp_codec_sample_rate_dialog_title" |
| 289 | android:entries="@array/bluetooth_a2dp_codec_sample_rate_titles" |
| 290 | android:entryValues="@array/bluetooth_a2dp_codec_sample_rate_values" /> |
| 291 | |
| 292 | <ListPreference |
| 293 | android:key="bluetooth_select_a2dp_bits_per_sample" |
| 294 | android:title="@string/bluetooth_select_a2dp_codec_bits_per_sample" |
| 295 | android:dialogTitle="@string/bluetooth_select_a2dp_codec_bits_per_sample_dialog_title" |
| 296 | android:entries="@array/bluetooth_a2dp_codec_bits_per_sample_titles" |
| 297 | android:entryValues="@array/bluetooth_a2dp_codec_bits_per_sample_values" /> |
| 298 | |
| 299 | <ListPreference |
| 300 | android:key="bluetooth_select_a2dp_channel_mode" |
| 301 | android:title="@string/bluetooth_select_a2dp_codec_channel_mode" |
| 302 | android:dialogTitle="@string/bluetooth_select_a2dp_codec_channel_mode_dialog_title" |
| 303 | android:entries="@array/bluetooth_a2dp_codec_channel_mode_titles" |
| 304 | android:entryValues="@array/bluetooth_a2dp_codec_channel_mode_values" /> |
| 305 | |
| 306 | <ListPreference |
| 307 | android:key="bluetooth_select_a2dp_ldac_playback_quality" |
| 308 | android:title="@string/bluetooth_select_a2dp_codec_ldac_playback_quality" |
| 309 | android:dialogTitle="@string/bluetooth_select_a2dp_codec_ldac_playback_quality_dialog_title" |
| 310 | android:entries="@array/bluetooth_a2dp_codec_ldac_playback_quality_titles" |
| 311 | android:entryValues="@array/bluetooth_a2dp_codec_ldac_playback_quality_values" /> |
| 312 | |
Hansong Zhang | b2730b7 | 2018-01-04 16:38:15 -0800 | [diff] [blame] | 313 | <ListPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 314 | android:key="bluetooth_max_connected_audio_devices" |
| 315 | android:title="@string/bluetooth_max_connected_audio_devices_string" |
| 316 | android:dialogTitle="@string/bluetooth_max_connected_audio_devices_dialog_title" |
| 317 | android:entries="@array/bluetooth_max_connected_audio_devices" |
| 318 | android:entryValues="@array/bluetooth_max_connected_audio_devices_values" /> |
Hansong Zhang | b2730b7 | 2018-01-04 16:38:15 -0800 | [diff] [blame] | 319 | |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 320 | </PreferenceCategory> |
| 321 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 322 | <PreferenceCategory |
| 323 | android:key="debug_input_category" |
| 324 | android:title="@string/debug_input_category" |
| 325 | android:order="500"> |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 326 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 327 | <SwitchPreference |
Jeff Brown | f407700 | 2011-08-26 17:10:32 -0700 | [diff] [blame] | 328 | android:key="show_touches" |
| 329 | android:title="@string/show_touches" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 330 | android:summary="@string/show_touches_summary" /> |
Jeff Brown | f407700 | 2011-08-26 17:10:32 -0700 | [diff] [blame] | 331 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 332 | <SwitchPreference |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 333 | android:key="pointer_location" |
| 334 | android:title="@string/pointer_location" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 335 | android:summary="@string/pointer_location_summary" /> |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 336 | |
| 337 | </PreferenceCategory> |
| 338 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 339 | <PreferenceCategory |
| 340 | android:key="debug_drawing_category" |
| 341 | android:title="@string/debug_drawing_category" |
| 342 | android:order="600"> |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 343 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 344 | <SwitchPreference |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 345 | android:key="show_screen_updates" |
| 346 | android:title="@string/show_screen_updates" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 347 | android:summary="@string/show_screen_updates_summary" /> |
Romain Guy | c1fa3e6 | 2012-04-27 15:27:54 -0700 | [diff] [blame] | 348 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 349 | <SwitchPreference |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 350 | android:key="debug_layout" |
| 351 | android:title="@string/debug_layout" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 352 | android:summary="@string/debug_layout_summary" /> |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 353 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 354 | <SwitchPreference |
Amith Yamasani | df1eda8 | 2013-08-07 20:14:44 -0700 | [diff] [blame] | 355 | android:key="force_rtl_layout_all_locales" |
| 356 | android:title="@string/force_rtl_layout_all_locales" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 357 | android:summary="@string/force_rtl_layout_all_locales_summary" /> |
Amith Yamasani | df1eda8 | 2013-08-07 20:14:44 -0700 | [diff] [blame] | 358 | |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 359 | <ListPreference |
| 360 | android:key="window_animation_scale" |
| 361 | android:title="@string/window_animation_scale_title" |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 362 | android:entries="@array/window_animation_scale_entries" |
| 363 | android:entryValues="@array/window_animation_scale_values" /> |
| 364 | |
| 365 | <ListPreference |
| 366 | android:key="transition_animation_scale" |
| 367 | android:title="@string/transition_animation_scale_title" |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 368 | android:entries="@array/transition_animation_scale_entries" |
| 369 | android:entryValues="@array/transition_animation_scale_values" /> |
| 370 | |
Chet Haase | b29e7870 | 2012-02-01 15:10:12 -0800 | [diff] [blame] | 371 | <ListPreference |
| 372 | android:key="animator_duration_scale" |
| 373 | android:title="@string/animator_duration_scale_title" |
Chet Haase | b29e7870 | 2012-02-01 15:10:12 -0800 | [diff] [blame] | 374 | android:entries="@array/animator_duration_scale_entries" |
| 375 | android:entryValues="@array/animator_duration_scale_values" /> |
| 376 | |
Jeff Brown | b2b54ee | 2012-08-29 02:33:06 -0700 | [diff] [blame] | 377 | <ListPreference |
| 378 | android:key="overlay_display_devices" |
| 379 | android:title="@string/overlay_display_devices_title" |
Jeff Brown | b2b54ee | 2012-08-29 02:33:06 -0700 | [diff] [blame] | 380 | android:entries="@array/overlay_display_devices_entries" |
| 381 | android:entryValues="@array/overlay_display_devices_values" /> |
| 382 | |
Jason Monk | 449f972 | 2016-04-05 15:45:27 -0400 | [diff] [blame] | 383 | <com.android.settings.display.DensityPreference |
| 384 | android:key="density" |
| 385 | android:title="@string/developer_smallest_width" /> |
| 386 | |
Adrian Roos | ca2b1f8 | 2018-01-19 20:54:20 +0100 | [diff] [blame] | 387 | <ListPreference |
Adrian Roos | db9d097 | 2018-01-10 13:56:31 +0100 | [diff] [blame] | 388 | android:key="display_cutout_emulation" |
Adrian Roos | 280589b | 2018-04-17 17:22:05 +0200 | [diff] [blame] | 389 | android:title="@string/display_cutout_emulation" |
| 390 | settings:keywords="@string/display_cutout_emulation_keywords" /> |
Adrian Roos | db9d097 | 2018-01-10 13:56:31 +0100 | [diff] [blame] | 391 | |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 392 | </PreferenceCategory> |
| 393 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 394 | <PreferenceCategory |
| 395 | android:key="debug_hw_drawing_category" |
| 396 | android:title="@string/debug_hw_drawing_category" |
| 397 | android:order="700"> |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 398 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 399 | <SwitchPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 400 | android:key="show_hw_screen_updates" |
| 401 | android:title="@string/show_hw_screen_updates" |
| 402 | android:summary="@string/show_hw_screen_updates_summary" /> |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 403 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 404 | <SwitchPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 405 | android:key="show_hw_layers_updates" |
| 406 | android:title="@string/show_hw_layers_updates" |
| 407 | android:summary="@string/show_hw_layers_updates_summary" /> |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 408 | |
Romain Guy | eb90fc5 | 2013-05-03 17:38:38 -0700 | [diff] [blame] | 409 | <ListPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 410 | android:key="debug_hw_overdraw" |
| 411 | android:title="@string/debug_hw_overdraw" |
| 412 | android:entries="@array/debug_hw_overdraw_entries" |
| 413 | android:entryValues="@array/debug_hw_overdraw_values" /> |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 414 | |
| 415 | <ListPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 416 | android:key="show_non_rect_clip" |
| 417 | android:title="@string/show_non_rect_clip" |
| 418 | android:entries="@array/show_non_rect_clip_entries" |
| 419 | android:entryValues="@array/show_non_rect_clip_values" /> |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 420 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 421 | <SwitchPreference |
John Reck | 3c2fdd0 | 2018-10-26 15:48:50 -0700 | [diff] [blame] | 422 | android:key="hwui_force_dark" |
| 423 | android:title="@string/hwui_force_dark_title" |
| 424 | android:summary="@string/hwui_force_dark_summary" /> |
| 425 | |
| 426 | <SwitchPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 427 | android:key="force_msaa" |
| 428 | android:title="@string/force_msaa" |
| 429 | android:summary="@string/force_msaa_summary" /> |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 430 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 431 | <SwitchPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 432 | android:key="disable_overlays" |
| 433 | android:title="@string/disable_overlays" |
| 434 | android:summary="@string/disable_overlays_summary" /> |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 435 | |
Alan Viverette | fc0ab21 | 2013-10-02 16:36:33 -0700 | [diff] [blame] | 436 | <ListPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 437 | android:entries="@array/simulate_color_space_entries" |
| 438 | android:entryValues="@array/simulate_color_space_values" |
| 439 | android:key="simulate_color_space" |
| 440 | android:summary="%s" |
| 441 | android:title="@string/simulate_color_space" /> |
Alan Viverette | fc0ab21 | 2013-10-02 16:36:33 -0700 | [diff] [blame] | 442 | |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 443 | </PreferenceCategory> |
| 444 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 445 | <PreferenceCategory |
| 446 | android:key="media_category" |
| 447 | android:title="@string/media_category" |
| 448 | android:order="800"> |
Lajos Molnar | 6b2f7c4 | 2014-03-28 09:48:58 -0700 | [diff] [blame] | 449 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 450 | <SwitchPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 451 | android:key="usb_audio" |
| 452 | android:title="@string/usb_audio_disable_routing" |
| 453 | android:summary="@string/usb_audio_disable_routing_summary" /> |
Glenn Kasten | ca54234 | 2014-07-22 09:14:08 -0700 | [diff] [blame] | 454 | |
Lajos Molnar | 6b2f7c4 | 2014-03-28 09:48:58 -0700 | [diff] [blame] | 455 | </PreferenceCategory> |
| 456 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 457 | <PreferenceCategory |
| 458 | android:key="debug_monitoring_category" |
| 459 | android:title="@string/debug_monitoring_category" |
| 460 | android:order="900"> |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 461 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 462 | <SwitchPreference |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 463 | android:key="strict_mode" |
| 464 | android:title="@string/strict_mode" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 465 | android:summary="@string/strict_mode_summary" /> |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 466 | |
Romain Guy | 7061848 | 2013-01-07 11:20:49 -0800 | [diff] [blame] | 467 | <ListPreference |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 468 | android:key="track_frame_time" |
| 469 | android:title="@string/track_frame_time" |
Romain Guy | 7061848 | 2013-01-07 11:20:49 -0800 | [diff] [blame] | 470 | android:entries="@array/track_frame_time_entries" |
| 471 | android:entryValues="@array/track_frame_time_values" /> |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 472 | |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 473 | </PreferenceCategory> |
| 474 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 475 | <PreferenceCategory |
| 476 | android:key="debug_applications_category" |
| 477 | android:title="@string/debug_applications_category" |
| 478 | android:order="1000"> |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 479 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 480 | <SwitchPreference |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 481 | android:key="immediately_destroy_activities" |
| 482 | android:title="@string/immediately_destroy_activities" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 483 | android:summary="@string/immediately_destroy_activities_summary" /> |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 484 | |
| 485 | <ListPreference |
| 486 | android:key="app_process_limit" |
| 487 | android:title="@string/app_process_limit_title" |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 488 | android:entries="@array/app_process_limit_entries" |
| 489 | android:entryValues="@array/app_process_limit_values" /> |
| 490 | |
Dianne Hackborn | f467c0a | 2015-12-07 16:36:09 -0800 | [diff] [blame] | 491 | <Preference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 492 | android:key="background_check" |
| 493 | android:fragment="com.android.settings.applications.appops.BackgroundCheckSummary" |
| 494 | android:title="@string/background_check_pref" /> |
Fan Zhang | f5bd885 | 2017-05-17 17:22:09 -0700 | [diff] [blame] | 495 | |
Andrew Sapperstein | 5cd4956 | 2018-01-15 13:46:41 -0800 | [diff] [blame] | 496 | <SwitchPreference |
Michal Karpinski | 642ff61 | 2018-11-14 13:46:42 +0000 | [diff] [blame] | 497 | android:key="allow_background_activity_starts" |
| 498 | android:title="@string/allow_background_activity_starts" |
| 499 | android:summary="@string/allow_background_activity_starts_summary" /> |
| 500 | |
| 501 | <SwitchPreference |
Andrew Sapperstein | 5cd4956 | 2018-01-15 13:46:41 -0800 | [diff] [blame] | 502 | android:key="show_first_crash_dialog" |
| 503 | android:title="@string/show_first_crash_dialog" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 504 | android:summary="@string/show_first_crash_dialog_summary" /> |
Dianne Hackborn | f467c0a | 2015-12-07 16:36:09 -0800 | [diff] [blame] | 505 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 506 | <SwitchPreference |
Dianne Hackborn | d5119bd | 2011-08-02 15:08:04 -0700 | [diff] [blame] | 507 | android:key="show_all_anrs" |
| 508 | android:title="@string/show_all_anrs" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 509 | android:summary="@string/show_all_anrs_summary" /> |
Dianne Hackborn | d5119bd | 2011-08-02 15:08:04 -0700 | [diff] [blame] | 510 | |
Geoffrey Pitsch | e18fd90 | 2017-05-11 12:58:23 -0400 | [diff] [blame] | 511 | <SwitchPreference |
| 512 | android:key="show_notification_channel_warnings" |
| 513 | android:title="@string/show_notification_channel_warnings" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 514 | android:summary="@string/show_notification_channel_warnings_summary" /> |
Geoffrey Pitsch | e18fd90 | 2017-05-11 12:58:23 -0400 | [diff] [blame] | 515 | |
Amith Yamasani | 50e32b0 | 2015-05-13 18:18:16 -0700 | [diff] [blame] | 516 | <Preference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 517 | android:key="inactive_apps" |
| 518 | android:title="@string/inactive_apps_title" |
| 519 | android:fragment="com.android.settings.fuelgauge.InactiveApps" /> |
Amith Yamasani | 50e32b0 | 2015-05-13 18:18:16 -0700 | [diff] [blame] | 520 | |
Todd Kennedy | 9716282 | 2015-08-07 14:39:08 -0700 | [diff] [blame] | 521 | <SwitchPreference |
| 522 | android:key="force_allow_on_external" |
| 523 | android:title="@string/force_allow_on_external" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 524 | android:summary="@string/force_allow_on_external_summary" /> |
Todd Kennedy | 9716282 | 2015-08-07 14:39:08 -0700 | [diff] [blame] | 525 | |
Jorim Jaggi | b12e9ad | 2015-10-27 10:54:53 +0100 | [diff] [blame] | 526 | <SwitchPreference |
| 527 | android:key="force_resizable_activities" |
| 528 | android:title="@string/force_resizable_activities" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 529 | android:summary="@string/force_resizable_activities_summary" /> |
Makoto Onuki | 0651701 | 2016-07-08 09:17:25 -0700 | [diff] [blame] | 530 | |
Bryce Lee | 7f4ae33 | 2017-09-28 16:07:13 -0700 | [diff] [blame] | 531 | <SwitchPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 532 | android:key="enable_freeform_support" |
| 533 | android:title="@string/enable_freeform_support" |
| 534 | android:summary="@string/enable_freeform_support_summary" /> |
Bryce Lee | 7f4ae33 | 2017-09-28 16:07:13 -0700 | [diff] [blame] | 535 | |
Andrii Kulian | 8e3859b | 2018-10-19 11:24:47 -0700 | [diff] [blame] | 536 | <SwitchPreference |
| 537 | android:key="force_desktop_mode_on_external_displays" |
| 538 | android:title="@string/force_desktop_mode" |
| 539 | android:summary="@string/force_desktop_mode_summary" /> |
| 540 | |
Makoto Onuki | 0651701 | 2016-07-08 09:17:25 -0700 | [diff] [blame] | 541 | <Preference |
| 542 | android:key="reset_shortcut_manager_throttling" |
| 543 | android:title="@string/reset_shortcut_manager_throttling" /> |
Eugene Susla | 7edf50f | 2018-10-10 10:57:02 -0700 | [diff] [blame] | 544 | |
| 545 | <SwitchPreference |
| 546 | android:key="sms_access_restriction_enabled" |
| 547 | android:title="@string/sms_access_restriction_enabled" |
| 548 | android:summary="@string/sms_access_restriction_enabled_summary" /> |
Michael Groover | 8aa523f | 2019-01-30 13:14:56 -0800 | [diff] [blame] | 549 | |
| 550 | <SwitchPreference |
| 551 | android:key="device_identifier_access_restrictions" |
| 552 | android:title="@string/device_identifier_access_restrictions_title" |
| 553 | android:summary="@string/device_identifier_access_restrictions_summary" /> |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 554 | </PreferenceCategory> |
Doris Ling | 3d9224f | 2016-12-12 16:20:22 -0800 | [diff] [blame] | 555 | |
Felipe Leme | 9bf591b | 2018-07-24 17:24:40 -0700 | [diff] [blame] | 556 | <com.android.settings.development.autofill.AutofillPreferenceCategory |
| 557 | android:key="debug_autofill_category" |
| 558 | android:title="@string/debug_autofill_category" |
| 559 | android:order="1100"> |
| 560 | |
| 561 | <ListPreference |
| 562 | android:key="autofill_logging_level" |
| 563 | android:title="@string/autofill_logging_level_title" |
| 564 | android:entries="@array/autofill_logging_level_entries" |
| 565 | android:entryValues="@array/autofill_logging_level_values" /> |
| 566 | |
| 567 | <com.android.settings.development.autofill.AutofillMaxPartitionsPreference |
| 568 | android:key="autofill_max_partitions" |
| 569 | android:title="@string/autofill_max_partitions" /> |
| 570 | |
| 571 | <com.android.settings.development.autofill.AutofillVisibleDatasetsPreference |
| 572 | android:key="autofill_visible_datasets" |
| 573 | android:title="@string/autofill_max_visible_datasets" /> |
| 574 | |
| 575 | <Preference |
| 576 | android:key="autofill_reset_developer_options" |
| 577 | android:title="@string/autofill_reset_developer_options" /> |
| 578 | |
| 579 | </com.android.settings.development.autofill.AutofillPreferenceCategory> |
| 580 | |
Amin Shaikh | 6f8048b | 2019-01-03 14:52:59 -0500 | [diff] [blame] | 581 | <PreferenceCategory |
| 582 | android:key="theme_customization_category" |
| 583 | android:title="@string/theme_customization_category" |
| 584 | android:order="1200"> <!-- Incremented by 100 from last order (i.e. 1100) --> |
| 585 | |
| 586 | <ListPreference |
| 587 | android:key="android.theme.customization.accent_color" |
| 588 | android:title="@string/theme_customization_accent_color_title"/> |
| 589 | <ListPreference |
| 590 | android:key="android.theme.customization.font" |
| 591 | android:title="@string/theme_customization_font_title"/> |
| 592 | <ListPreference |
| 593 | android:key="android.theme.customization.adaptive_icon_shape" |
| 594 | android:title="@string/theme_customization_icon_shape_title"/> |
| 595 | </PreferenceCategory> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 596 | </PreferenceScreen> |