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 <PreferenceScreen 20 android:key="local_backup_password" 21 android:title="@string/local_backup_password_title" 22 android:summary="@string/local_backup_password_summary_none" 23 android:persistent="false" > 24 <intent 25 android:action="android.settings.privacy.SET_FULL_BACKUP_PASSWORD" 26 android:targetPackage="com.android.settings" 27 android:targetClass="com.android.settings.SetFullBackupPassword" /> 28 </PreferenceScreen> 29 30 <CheckBoxPreference 31 android:key="keep_screen_on" 32 android:title="@string/keep_screen_on" 33 android:summary="@string/keep_screen_on_summary"/> 34 35 <ListPreference 36 android:key="hdcp_checking" 37 android:title="@string/hdcp_checking_title" 38 android:dialogTitle="@string/hdcp_checking_dialog_title" 39 android:entries="@array/hdcp_checking_titles" 40 android:entryValues="@array/hdcp_checking_values" /> 41 42 <CheckBoxPreference 43 android:key="enforce_read_external" 44 android:title="@string/enforce_read_external_title" 45 android:summary="@string/enforce_read_external_summary" /> 46 47 <PreferenceCategory android:key="debug_debugging_category" 48 android:title="@string/debug_debugging_category"> 49 50 <CheckBoxPreference 51 android:key="enable_adb" 52 android:title="@string/enable_adb" 53 android:summary="@string/enable_adb_summary"/> 54 55 <CheckBoxPreference 56 android:key="allow_mock_location" 57 android:title="@string/allow_mock_location" 58 android:summary="@string/allow_mock_location_summary"/> 59 60 <PreferenceScreen android:key="debug_app" 61 android:title="@string/debug_app" /> 62 63 <CheckBoxPreference 64 android:key="wait_for_debugger" 65 android:title="@string/wait_for_debugger" 66 android:summary="@string/wait_for_debugger_summary"/> 67 68 </PreferenceCategory> 69 70 <PreferenceCategory android:key="debug_input_category" 71 android:title="@string/debug_input_category"> 72 73 <CheckBoxPreference 74 android:key="show_touches" 75 android:title="@string/show_touches" 76 android:summary="@string/show_touches_summary"/> 77 78 <CheckBoxPreference 79 android:key="pointer_location" 80 android:title="@string/pointer_location" 81 android:summary="@string/pointer_location_summary"/> 82 83 </PreferenceCategory> 84 85 <PreferenceCategory android:key="debug_drawing_category" 86 android:title="@string/debug_drawing_category"> 87 88 <CheckBoxPreference 89 android:key="debug_layout" 90 android:title="@string/debug_layout" 91 android:summary="@string/debug_layout_summary"/> 92 93 <CheckBoxPreference 94 android:key="show_hw_screen_udpates" 95 android:title="@string/show_hw_screen_updates" 96 android:summary="@string/show_hw_screen_updates_summary"/> 97 98 <CheckBoxPreference 99 android:key="show_screen_updates" 100 android:title="@string/show_screen_updates" 101 android:summary="@string/show_screen_updates_summary"/> 102 103 <ListPreference 104 android:key="window_animation_scale" 105 android:title="@string/window_animation_scale_title" 106 android:persistent="false" 107 android:entries="@array/window_animation_scale_entries" 108 android:entryValues="@array/window_animation_scale_values" /> 109 110 <ListPreference 111 android:key="transition_animation_scale" 112 android:title="@string/transition_animation_scale_title" 113 android:persistent="false" 114 android:entries="@array/transition_animation_scale_entries" 115 android:entryValues="@array/transition_animation_scale_values" /> 116 117 <ListPreference 118 android:key="animator_duration_scale" 119 android:title="@string/animator_duration_scale_title" 120 android:persistent="false" 121 android:entries="@array/animator_duration_scale_entries" 122 android:entryValues="@array/animator_duration_scale_values" /> 123 124 <CheckBoxPreference 125 android:key="disable_overlays" 126 android:title="@string/disable_overlays" 127 android:summary="@string/disable_overlays_summary"/> 128 129 <CheckBoxPreference 130 android:key="force_hw_ui" 131 android:title="@string/force_hw_ui" 132 android:summary="@string/force_hw_ui_summary"/> 133 134 </PreferenceCategory> 135 136 <PreferenceCategory android:key="debug_monitoring_category" 137 android:title="@string/debug_monitoring_category"> 138 139 <CheckBoxPreference 140 android:key="strict_mode" 141 android:title="@string/strict_mode" 142 android:summary="@string/strict_mode_summary"/> 143 144 <CheckBoxPreference 145 android:key="show_cpu_usage" 146 android:title="@string/show_cpu_usage" 147 android:summary="@string/show_cpu_usage_summary"/> 148 149 <CheckBoxPreference 150 android:key="track_frame_time" 151 android:title="@string/track_frame_time" 152 android:summary="@string/track_frame_time_summary"/> 153 154 <MultiCheckPreference 155 android:key="enable_traces" 156 android:title="@string/enable_traces_title" 157 android:dialogTitle="@string/enable_traces_dialog_title" /> 158 159 </PreferenceCategory> 160 161 <PreferenceCategory android:key="debug_applications_category" 162 android:title="@string/debug_applications_category"> 163 164 <CheckBoxPreference 165 android:key="immediately_destroy_activities" 166 android:title="@string/immediately_destroy_activities" 167 android:summary="@string/immediately_destroy_activities_summary"/> 168 169 <ListPreference 170 android:key="app_process_limit" 171 android:title="@string/app_process_limit_title" 172 android:persistent="false" 173 android:entries="@array/app_process_limit_entries" 174 android:entryValues="@array/app_process_limit_values" /> 175 176 <CheckBoxPreference 177 android:key="show_all_anrs" 178 android:title="@string/show_all_anrs" 179 android:summary="@string/show_all_anrs_summary"/> 180 181 </PreferenceCategory> 182 183 </PreferenceScreen> 184