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         
     20     <CheckBoxPreference 
     21         android:key="enable_adb" 
     22         android:title="@string/enable_adb" 
     23         android:summary="@string/enable_adb_summary"/>
     24 
     25     <Preference
     26         android:key="verifier_device_identifier"
     27         style="?android:attr/preferenceInformationStyle"
     28         android:title="@string/verifier_device_identifier"
     29         android:summary="@string/verifier_device_identifier_not_available"
     30         android:persistent="false" />
     31 
     32     <CheckBoxPreference 
     33         android:key="keep_screen_on" 
     34         android:title="@string/keep_screen_on" 
     35         android:summary="@string/keep_screen_on_summary"/>
     36 
     37     <CheckBoxPreference 
     38         android:key="allow_mock_location" 
     39         android:title="@string/allow_mock_location" 
     40         android:summary="@string/allow_mock_location_summary"/>
     41 
     42     <ListPreference
     43         android:key="hdcp_checking"
     44         android:title="@string/hdcp_checking_title"
     45         android:dialogTitle="@string/hdcp_checking_dialog_title"
     46         android:entries="@array/hdcp_checking_titles"
     47         android:entryValues="@array/hdcp_checking_values" />
     48 
     49     <PreferenceScreen
     50             android:key="local_backup_password"
     51             android:title="@string/local_backup_password_title"
     52             android:summary="@string/local_backup_password_summary_none"
     53             android:persistent="false" >
     54         <intent
     55                 android:action="android.settings.privacy.SET_FULL_BACKUP_PASSWORD"
     56                 android:targetPackage="com.android.settings"
     57                 android:targetClass="com.android.settings.SetFullBackupPassword" />
     58     </PreferenceScreen>
     59 
     60     <PreferenceCategory android:key="debug_ui_category"
     61             android:title="@string/debug_ui_category">
     62 
     63         <CheckBoxPreference
     64             android:key="strict_mode"
     65             android:title="@string/strict_mode"
     66             android:summary="@string/strict_mode_summary"/>
     67 
     68         <CheckBoxPreference
     69             android:key="pointer_location"
     70             android:title="@string/pointer_location"
     71             android:summary="@string/pointer_location_summary"/>
     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="show_screen_updates"
     80             android:title="@string/show_screen_updates"
     81             android:summary="@string/show_screen_updates_summary"/>
     82 
     83         <CheckBoxPreference
     84             android:key="show_cpu_usage"
     85             android:title="@string/show_cpu_usage"
     86             android:summary="@string/show_cpu_usage_summary"/>
     87 
     88         <CheckBoxPreference
     89             android:key="force_hw_ui"
     90             android:title="@string/force_hw_ui"
     91             android:summary="@string/force_hw_ui_summary"/>
     92 
     93         <ListPreference
     94             android:key="window_animation_scale"
     95             android:title="@string/window_animation_scale_title"
     96             android:persistent="false"
     97             android:entries="@array/window_animation_scale_entries"
     98             android:entryValues="@array/window_animation_scale_values" />
     99 
    100         <ListPreference
    101             android:key="transition_animation_scale"
    102             android:title="@string/transition_animation_scale_title"
    103             android:persistent="false"
    104             android:entries="@array/transition_animation_scale_entries"
    105             android:entryValues="@array/transition_animation_scale_values" />
    106 
    107     </PreferenceCategory>
    108 
    109     <PreferenceCategory android:key="debug_applications_category"
    110             android:title="@string/debug_applications_category">
    111 
    112         <CheckBoxPreference
    113             android:key="immediately_destroy_activities"
    114             android:title="@string/immediately_destroy_activities"
    115             android:summary="@string/immediately_destroy_activities_summary"/>
    116 
    117         <ListPreference
    118             android:key="app_process_limit"
    119             android:title="@string/app_process_limit_title"
    120             android:persistent="false"
    121             android:entries="@array/app_process_limit_entries"
    122             android:entryValues="@array/app_process_limit_values" />
    123 
    124         <CheckBoxPreference
    125             android:key="show_all_anrs"
    126             android:title="@string/show_all_anrs"
    127             android:summary="@string/show_all_anrs_summary"/>
    128 
    129     </PreferenceCategory>
    130 
    131 </PreferenceScreen>
    132