debug_preferences.xml revision ba6d7b853c32ad6c3be26c443daa61f322bcfdc2
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 18 xmlns:android="http://schemas.android.com/apk/res/android" > 19 <PreferenceCategory 20 android:title="@string/pref_development_title" 21 android:key="debug_menu" > 22 23 <CheckBoxPreference 24 android:key="small_screen" 25 android:defaultValue="false" 26 android:title="@string/pref_development_single_column_rendering" /> 27 28 <CheckBoxPreference 29 android:key="wide_viewport" 30 android:defaultValue="true" 31 android:title="@string/pref_development_viewport" /> 32 33 <CheckBoxPreference 34 android:key="normal_layout" 35 android:defaultValue="false" 36 android:title="@string/pref_development_normal_rendering" /> 37 38 <CheckBoxPreference 39 android:key="enable_tracing" 40 android:defaultValue="false" 41 android:title="@string/pref_development_trace" /> 42 43 <CheckBoxPreference 44 android:key="enable_light_touch" 45 android:defaultValue="false" 46 android:title="Enable light touch" /> 47 48 <CheckBoxPreference 49 android:key="enable_nav_dump" 50 android:defaultValue="false" 51 android:title="@string/pref_development_nav_dump" /> 52 53 <ListPreference 54 android:key="user_agent" 55 android:title="@string/pref_development_uastring" 56 android:entries="@array/pref_development_ua_choices" 57 android:entryValues="@array/pref_development_ua_values" 58 android:defaultValue="0"/> 59 60 </PreferenceCategory> 61 62</PreferenceScreen> 63