blob: 2d15ab25a3f1447dbb14c0d14d7e1d291a55784c [file] [log] [blame]
The Android Open Source Project0c908882009-03-03 19:32:16 -08001<?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" >
Ben Murdochbff2d602009-07-01 20:19:05 +010019
Derek Sollenbergerffa561e2010-11-16 14:19:01 -050020 <CheckBoxPreference
21 android:key="enable_hardware_accel"
Derek Sollenberger8de82852010-11-18 19:51:50 -050022 android:defaultValue="true"
Derek Sollenbergerffa561e2010-11-16 14:19:01 -050023 android:title="@string/pref_development_hardware_accel" />
24
Derek Sollenberger31adf672011-07-08 11:31:30 -040025 <CheckBoxPreference
26 android:key="enable_hardware_accel_skia"
27 android:defaultValue="false"
28 android:title="@string/pref_development_hardware_accel_skia" />
29
Jeff Hamilton462b8e82010-09-23 14:33:43 -050030 <ListPreference
31 android:key="user_agent"
32 android:title="@string/pref_development_uastring"
33 android:entries="@array/pref_development_ua_choices"
34 android:entryValues="@array/pref_development_ua_values"
35 android:defaultValue="0"/>
The Android Open Source Project0c908882009-03-03 19:32:16 -080036
John Reckf48314f2011-04-27 17:52:17 -070037 <CheckBoxPreference
38 android:key="enable_visual_indicator"
39 android:defaultValue="false"
40 android:title="@string/pref_development_visual_indicator" />
41
Derek Sollenberger31adf672011-07-08 11:31:30 -040042 <!-- The javascript console is enabled by default when the user has
43 also enabled debug mode by navigating to about:debug. -->
John Reckf48314f2011-04-27 17:52:17 -070044 <CheckBoxPreference
45 android:key="javascript_console"
46 android:defaultValue="true"
47 android:title="@string/pref_development_error_console" />
48
49 <CheckBoxPreference
50 android:key="small_screen"
51 android:defaultValue="false"
52 android:title="@string/pref_development_single_column_rendering" />
53
54 <CheckBoxPreference
55 android:key="wide_viewport"
56 android:defaultValue="true"
57 android:title="@string/pref_development_viewport" />
58
59 <CheckBoxPreference
60 android:key="normal_layout"
61 android:defaultValue="false"
62 android:title="@string/pref_development_normal_rendering" />
63
64 <CheckBoxPreference
65 android:key="enable_tracing"
66 android:defaultValue="false"
67 android:title="@string/pref_development_trace" />
68
69 <CheckBoxPreference
70 android:key="enable_light_touch"
71 android:defaultValue="false"
72 android:title="Enable light touch" />
73
74 <CheckBoxPreference
75 android:key="enable_nav_dump"
76 android:defaultValue="false"
77 android:title="@string/pref_development_nav_dump" />
78
79 <EditTextPreference
80 android:key="js_engine_flags"
81 android:title="@string/js_engine_flags"
82 android:singleLine="true" />
83
John Reckba287c22011-07-26 16:13:53 -070084 <Preference
85 android:key="reset_prelogin"
86 android:title="@string/pref_development_reset_prelogin" />
87
The Android Open Source Project0c908882009-03-03 19:32:16 -080088</PreferenceScreen>