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 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 --> 16 17 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" 18 android:title="@string/development_settings_title"> 19 <com.android.settings.BugreportPreference 20 android:key="bugreport" 21 android:title="@*android:string/bugreport_title" 22 android:dialogTitle="@*android:string/bugreport_title" /> 23 24 <PreferenceScreen 25 android:key="local_backup_password" 26 android:title="@string/local_backup_password_title" 27 android:summary="@string/local_backup_password_summary_none" 28 android:persistent="false" > 29 <intent 30 android:action="android.settings.privacy.SET_FULL_BACKUP_PASSWORD" 31 android:targetPackage="com.android.settings" 32 android:targetClass="com.android.settings.SetFullBackupPassword" /> 33 </PreferenceScreen> 34 35 <CheckBoxPreference 36 android:key="keep_screen_on" 37 android:title="@string/keep_screen_on" 38 android:summary="@string/keep_screen_on_summary"/> 39 40 <ListPreference 41 android:key="hdcp_checking" 42 android:title="@string/hdcp_checking_title" 43 android:dialogTitle="@string/hdcp_checking_dialog_title" 44 android:entries="@array/hdcp_checking_titles" 45 android:entryValues="@array/hdcp_checking_values" /> 46 47 <CheckBoxPreference 48 android:key="enforce_read_external" 49 android:title="@string/enforce_read_external_title" 50 android:summary="@string/enforce_read_external_summary" /> 51 52 <PreferenceCategory android:key="debug_debugging_category" 53 android:title="@string/debug_debugging_category"> 54 55 <CheckBoxPreference 56 android:key="enable_adb" 57 android:title="@string/enable_adb" 58 android:summary="@string/enable_adb_summary"/> 59 60 <CheckBoxPreference 61 android:key="bugreport_in_power" 62 android:title="@string/bugreport_in_power" 63 android:summary="@string/bugreport_in_power_summary"/> 64 65 <CheckBoxPreference 66 android:key="allow_mock_location" 67 android:title="@string/allow_mock_location" 68 android:summary="@string/allow_mock_location_summary"/> 69 70 <PreferenceScreen android:key="debug_app" 71 android:title="@string/debug_app" /> 72 73 <CheckBoxPreference 74 android:key="wait_for_debugger" 75 android:title="@string/wait_for_debugger" 76 android:summary="@string/wait_for_debugger_summary"/> 77 78 <CheckBoxPreference 79 android:key="verify_apps_over_usb" 80 android:title="@string/verify_apps_over_usb_title" 81 android:summary="@string/verify_apps_over_usb_summary"/> 82 83 </PreferenceCategory> 84 85 <PreferenceCategory android:key="debug_input_category" 86 android:title="@string/debug_input_category"> 87 88 <CheckBoxPreference 89 android:key="show_touches" 90 android:title="@string/show_touches" 91 android:summary="@string/show_touches_summary"/> 92 93 <CheckBoxPreference 94 android:key="pointer_location" 95 android:title="@string/pointer_location" 96 android:summary="@string/pointer_location_summary"/> 97 98 </PreferenceCategory> 99 100 <PreferenceCategory android:key="debug_drawing_category" 101 android:title="@string/debug_drawing_category"> 102 103 <CheckBoxPreference 104 android:key="debug_layout" 105 android:title="@string/debug_layout" 106 android:summary="@string/debug_layout_summary"/> 107 108 <CheckBoxPreference 109 android:key="show_hw_screen_udpates" 110 android:title="@string/show_hw_screen_updates" 111 android:summary="@string/show_hw_screen_updates_summary"/> 112 113 <CheckBoxPreference 114 android:key="show_hw_layers_udpates" 115 android:title="@string/show_hw_layers_updates" 116 android:summary="@string/show_hw_layers_updates_summary"/> 117 118 <CheckBoxPreference 119 android:key="show_hw_overdraw" 120 android:title="@string/show_hw_overdraw" 121 android:summary="@string/show_hw_overdraw_summary"/> 122 123 <CheckBoxPreference 124 android:key="show_screen_updates" 125 android:title="@string/show_screen_updates" 126 android:summary="@string/show_screen_updates_summary"/> 127 128 <ListPreference 129 android:key="window_animation_scale" 130 android:title="@string/window_animation_scale_title" 131 android:persistent="false" 132 android:entries="@array/window_animation_scale_entries" 133 android:entryValues="@array/window_animation_scale_values" /> 134 135 <ListPreference 136 android:key="transition_animation_scale" 137 android:title="@string/transition_animation_scale_title" 138 android:persistent="false" 139 android:entries="@array/transition_animation_scale_entries" 140 android:entryValues="@array/transition_animation_scale_values" /> 141 142 <ListPreference 143 android:key="animator_duration_scale" 144 android:title="@string/animator_duration_scale_title" 145 android:persistent="false" 146 android:entries="@array/animator_duration_scale_entries" 147 android:entryValues="@array/animator_duration_scale_values" /> 148 149 <CheckBoxPreference 150 android:key="disable_overlays" 151 android:title="@string/disable_overlays" 152 android:summary="@string/disable_overlays_summary"/> 153 154 <CheckBoxPreference 155 android:key="force_hw_ui" 156 android:title="@string/force_hw_ui" 157 android:summary="@string/force_hw_ui_summary"/> 158 159 <CheckBoxPreference 160 android:key="force_msaa" 161 android:title="@string/force_msaa" 162 android:summary="@string/force_msaa_summary"/> 163 164 <ListPreference 165 android:key="overlay_display_devices" 166 android:title="@string/overlay_display_devices_title" 167 android:persistent="false" 168 android:entries="@array/overlay_display_devices_entries" 169 android:entryValues="@array/overlay_display_devices_values" /> 170 171 </PreferenceCategory> 172 173 <PreferenceCategory android:key="debug_monitoring_category" 174 android:title="@string/debug_monitoring_category"> 175 176 <CheckBoxPreference 177 android:key="strict_mode" 178 android:title="@string/strict_mode" 179 android:summary="@string/strict_mode_summary"/> 180 181 <CheckBoxPreference 182 android:key="show_cpu_usage" 183 android:title="@string/show_cpu_usage" 184 android:summary="@string/show_cpu_usage_summary"/> 185 186 <CheckBoxPreference 187 android:key="track_frame_time" 188 android:title="@string/track_frame_time" 189 android:summary="@string/track_frame_time_summary"/> 190 191 <ListPreference 192 android:key="enable_opengl_traces" 193 android:title="@string/enable_opengl_traces_title" 194 android:persistent="false" 195 android:entries="@array/enable_opengl_traces_entries" 196 android:entryValues="@array/enable_opengl_traces_values" /> 197 198 <MultiCheckPreference 199 android:key="enable_traces" 200 android:title="@string/enable_traces_title" 201 android:dialogTitle="@string/enable_traces_dialog_title" /> 202 203 </PreferenceCategory> 204 205 <PreferenceCategory android:key="debug_applications_category" 206 android:title="@string/debug_applications_category"> 207 208 <CheckBoxPreference 209 android:key="immediately_destroy_activities" 210 android:title="@string/immediately_destroy_activities" 211 android:summary="@string/immediately_destroy_activities_summary"/> 212 213 <ListPreference 214 android:key="app_process_limit" 215 android:title="@string/app_process_limit_title" 216 android:persistent="false" 217 android:entries="@array/app_process_limit_entries" 218 android:entryValues="@array/app_process_limit_values" /> 219 220 <CheckBoxPreference 221 android:key="show_all_anrs" 222 android:title="@string/show_all_anrs" 223 android:summary="@string/show_all_anrs_summary"/> 224 225 </PreferenceCategory> 226 227 </PreferenceScreen> 228