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