blob: ed78fcb83c1f2a06f156b17cfb97431e7b13f5cf [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
Teng-Hui Zhu85de57a2011-09-22 15:34:29 -070042 <CheckBoxPreference
43 android:key="enable_cpu_upload_path"
Teng-Hui Zhudbe001b2011-09-30 10:37:01 -070044 android:defaultValue="false"
Teng-Hui Zhu85de57a2011-09-22 15:34:29 -070045 android:title="@string/pref_development_cpu_upload_path" />
46
Derek Sollenberger31adf672011-07-08 11:31:30 -040047 <!-- The javascript console is enabled by default when the user has
48 also enabled debug mode by navigating to about:debug. -->
John Reckf48314f2011-04-27 17:52:17 -070049 <CheckBoxPreference
50 android:key="javascript_console"
51 android:defaultValue="true"
52 android:title="@string/pref_development_error_console" />
53
54 <CheckBoxPreference
55 android:key="small_screen"
56 android:defaultValue="false"
57 android:title="@string/pref_development_single_column_rendering" />
58
59 <CheckBoxPreference
60 android:key="wide_viewport"
61 android:defaultValue="true"
62 android:title="@string/pref_development_viewport" />
63
64 <CheckBoxPreference
65 android:key="normal_layout"
66 android:defaultValue="false"
67 android:title="@string/pref_development_normal_rendering" />
68
69 <CheckBoxPreference
70 android:key="enable_tracing"
71 android:defaultValue="false"
72 android:title="@string/pref_development_trace" />
73
74 <CheckBoxPreference
75 android:key="enable_light_touch"
76 android:defaultValue="false"
77 android:title="Enable light touch" />
78
79 <CheckBoxPreference
80 android:key="enable_nav_dump"
81 android:defaultValue="false"
82 android:title="@string/pref_development_nav_dump" />
83
84 <EditTextPreference
85 android:key="js_engine_flags"
86 android:title="@string/js_engine_flags"
87 android:singleLine="true" />
88
John Reckba287c22011-07-26 16:13:53 -070089 <Preference
90 android:key="reset_prelogin"
91 android:title="@string/pref_development_reset_prelogin" />
92
The Android Open Source Project0c908882009-03-03 19:32:16 -080093</PreferenceScreen>