Home | History | Annotate | Download | only in xml
      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="select_runtime"
     42         android:title="@string/select_runtime_title"
     43         android:dialogTitle="@string/select_runtime_dialog_title"
     44         android:entries="@array/select_runtime_titles"
     45         android:entryValues="@array/select_runtime_values" />
     46 
     47     <ListPreference
     48         android:key="hdcp_checking"
     49         android:title="@string/hdcp_checking_title"
     50         android:dialogTitle="@string/hdcp_checking_dialog_title"
     51         android:entries="@array/hdcp_checking_titles"
     52         android:entryValues="@array/hdcp_checking_values" />
     53 
     54     <CheckBoxPreference
     55         android:key="bt_hci_snoop_log"
     56         android:title="@string/bt_hci_snoop_log"
     57         android:summary="@string/bt_hci_snoop_log_summary"/>
     58 
     59     <PreferenceScreen android:key="proc_stats"
     60             android:title="@string/process_stats_summary_title"
     61             android:summary="@string/process_stats_summary"
     62             android:fragment="com.android.settings.applications.ProcessStatsUi">
     63     </PreferenceScreen>
     64 
     65     <PreferenceCategory android:key="debug_debugging_category"
     66             android:title="@string/debug_debugging_category">
     67 
     68         <CheckBoxPreference
     69             android:key="enable_adb"
     70             android:title="@string/enable_adb"
     71             android:summary="@string/enable_adb_summary"/>
     72 
     73         <Preference android:key="clear_adb_keys"
     74                 android:title="@string/clear_adb_keys" />
     75 
     76         <CheckBoxPreference
     77             android:key="enable_terminal"
     78             android:title="@string/enable_terminal_title"
     79             android:summary="@string/enable_terminal_summary" />
     80 
     81         <CheckBoxPreference
     82             android:key="bugreport_in_power"
     83             android:title="@string/bugreport_in_power"
     84             android:summary="@string/bugreport_in_power_summary"/>
     85 
     86         <CheckBoxPreference
     87             android:key="allow_mock_location"
     88             android:title="@string/allow_mock_location"
     89             android:summary="@string/allow_mock_location_summary"/>
     90 
     91         <PreferenceScreen android:key="debug_app"
     92                 android:title="@string/debug_app" />
     93 
     94         <CheckBoxPreference
     95             android:key="wait_for_debugger"
     96             android:title="@string/wait_for_debugger"
     97             android:summary="@string/wait_for_debugger_summary"/>
     98 
     99         <CheckBoxPreference
    100             android:key="verify_apps_over_usb"
    101             android:title="@string/verify_apps_over_usb_title"
    102             android:summary="@string/verify_apps_over_usb_summary"/>
    103 
    104         <CheckBoxPreference
    105             android:key="wifi_display_certification"
    106             android:title="@string/wifi_display_certification"
    107             android:summary="@string/wifi_display_certification_summary"/>
    108     </PreferenceCategory>
    109 
    110     <PreferenceCategory android:key="debug_input_category"
    111             android:title="@string/debug_input_category">
    112 
    113         <CheckBoxPreference
    114             android:key="show_touches"
    115             android:title="@string/show_touches"
    116             android:summary="@string/show_touches_summary"/>
    117 
    118         <CheckBoxPreference
    119             android:key="pointer_location"
    120             android:title="@string/pointer_location"
    121             android:summary="@string/pointer_location_summary"/>
    122 
    123     </PreferenceCategory>
    124 
    125     <PreferenceCategory android:key="debug_drawing_category"
    126             android:title="@string/debug_drawing_category">
    127 
    128         <CheckBoxPreference
    129             android:key="show_screen_updates"
    130             android:title="@string/show_screen_updates"
    131             android:summary="@string/show_screen_updates_summary"/>
    132 
    133         <CheckBoxPreference
    134             android:key="debug_layout"
    135             android:title="@string/debug_layout"
    136             android:summary="@string/debug_layout_summary"/>
    137 
    138         <CheckBoxPreference
    139             android:key="force_rtl_layout_all_locales"
    140             android:title="@string/force_rtl_layout_all_locales"
    141             android:summary="@string/force_rtl_layout_all_locales_summary"/>
    142 
    143         <ListPreference
    144             android:key="window_animation_scale"
    145             android:title="@string/window_animation_scale_title"
    146             android:persistent="false"
    147             android:entries="@array/window_animation_scale_entries"
    148             android:entryValues="@array/window_animation_scale_values" />
    149 
    150         <ListPreference
    151             android:key="transition_animation_scale"
    152             android:title="@string/transition_animation_scale_title"
    153             android:persistent="false"
    154             android:entries="@array/transition_animation_scale_entries"
    155             android:entryValues="@array/transition_animation_scale_values" />
    156 
    157         <ListPreference
    158             android:key="animator_duration_scale"
    159             android:title="@string/animator_duration_scale_title"
    160             android:persistent="false"
    161             android:entries="@array/animator_duration_scale_entries"
    162             android:entryValues="@array/animator_duration_scale_values" />
    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_hw_drawing_category"
    174             android:title="@string/debug_hw_drawing_category">
    175 
    176         <CheckBoxPreference
    177                 android:key="force_hw_ui"
    178                 android:title="@string/force_hw_ui"
    179                 android:summary="@string/force_hw_ui_summary"/>
    180 
    181         <CheckBoxPreference
    182                 android:key="show_hw_screen_udpates"
    183                 android:title="@string/show_hw_screen_updates"
    184                 android:summary="@string/show_hw_screen_updates_summary"/>
    185 
    186         <CheckBoxPreference
    187                 android:key="show_hw_layers_udpates"
    188                 android:title="@string/show_hw_layers_updates"
    189                 android:summary="@string/show_hw_layers_updates_summary"/>
    190 
    191         <ListPreference
    192                 android:key="debug_hw_overdraw"
    193                 android:title="@string/debug_hw_overdraw"
    194                 android:persistent="false"
    195                 android:entries="@array/debug_hw_overdraw_entries"
    196                 android:entryValues="@array/debug_hw_overdraw_values" />
    197 
    198         <ListPreference
    199                 android:key="show_non_rect_clip"
    200                 android:title="@string/show_non_rect_clip"
    201                 android:persistent="false"
    202                 android:entries="@array/show_non_rect_clip_entries"
    203                 android:entryValues="@array/show_non_rect_clip_values" />
    204 
    205         <CheckBoxPreference
    206                 android:key="force_msaa"
    207                 android:title="@string/force_msaa"
    208                 android:summary="@string/force_msaa_summary"/>
    209 
    210         <CheckBoxPreference
    211                 android:key="disable_overlays"
    212                 android:title="@string/disable_overlays"
    213                 android:summary="@string/disable_overlays_summary"/>
    214 
    215     </PreferenceCategory>
    216 
    217     <PreferenceCategory android:key="debug_monitoring_category"
    218             android:title="@string/debug_monitoring_category">
    219 
    220         <CheckBoxPreference
    221             android:key="strict_mode"
    222             android:title="@string/strict_mode"
    223             android:summary="@string/strict_mode_summary"/>
    224 
    225         <CheckBoxPreference
    226             android:key="show_cpu_usage"
    227             android:title="@string/show_cpu_usage"
    228             android:summary="@string/show_cpu_usage_summary"/>
    229 
    230         <ListPreference
    231             android:key="track_frame_time"
    232             android:title="@string/track_frame_time"
    233             android:persistent="false"
    234             android:entries="@array/track_frame_time_entries"
    235             android:entryValues="@array/track_frame_time_values" />
    236 
    237         <ListPreference
    238             android:key="enable_opengl_traces"
    239             android:title="@string/enable_opengl_traces_title"
    240             android:persistent="false"
    241             android:entries="@array/enable_opengl_traces_entries"
    242             android:entryValues="@array/enable_opengl_traces_values" />
    243 
    244     </PreferenceCategory>
    245 
    246     <PreferenceCategory android:key="debug_applications_category"
    247             android:title="@string/debug_applications_category">
    248 
    249         <CheckBoxPreference
    250             android:key="immediately_destroy_activities"
    251             android:title="@string/immediately_destroy_activities"
    252             android:summary="@string/immediately_destroy_activities_summary"/>
    253 
    254         <ListPreference
    255             android:key="app_process_limit"
    256             android:title="@string/app_process_limit_title"
    257             android:persistent="false"
    258             android:entries="@array/app_process_limit_entries"
    259             android:entryValues="@array/app_process_limit_values" />
    260 
    261         <CheckBoxPreference
    262             android:key="show_all_anrs"
    263             android:title="@string/show_all_anrs"
    264             android:summary="@string/show_all_anrs_summary"/>
    265 
    266      </PreferenceCategory>
    267 
    268 </PreferenceScreen>
    269