blob: 5126b0d36c35d9763582be149343c6c255782b9e [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
Jeff Hamilton462b8e82010-09-23 14:33:43 -050025 <ListPreference
26 android:key="user_agent"
27 android:title="@string/pref_development_uastring"
28 android:entries="@array/pref_development_ua_choices"
29 android:entryValues="@array/pref_development_ua_values"
30 android:defaultValue="0"/>
The Android Open Source Project0c908882009-03-03 19:32:16 -080031
John Reckf48314f2011-04-27 17:52:17 -070032 <!-- The javascript console is enabled by default when the user has
33 also enabled debug mode by navigating to about:debug. -->
34 <CheckBoxPreference
35 android:key="enable_visual_indicator"
36 android:defaultValue="false"
37 android:title="@string/pref_development_visual_indicator" />
38
39 <CheckBoxPreference
40 android:key="javascript_console"
41 android:defaultValue="true"
42 android:title="@string/pref_development_error_console" />
43
44 <CheckBoxPreference
45 android:key="small_screen"
46 android:defaultValue="false"
47 android:title="@string/pref_development_single_column_rendering" />
48
49 <CheckBoxPreference
50 android:key="wide_viewport"
51 android:defaultValue="true"
52 android:title="@string/pref_development_viewport" />
53
54 <CheckBoxPreference
55 android:key="normal_layout"
56 android:defaultValue="false"
57 android:title="@string/pref_development_normal_rendering" />
58
59 <CheckBoxPreference
60 android:key="enable_tracing"
61 android:defaultValue="false"
62 android:title="@string/pref_development_trace" />
63
64 <CheckBoxPreference
65 android:key="enable_light_touch"
66 android:defaultValue="false"
67 android:title="Enable light touch" />
68
69 <CheckBoxPreference
70 android:key="enable_nav_dump"
71 android:defaultValue="false"
72 android:title="@string/pref_development_nav_dump" />
73
74 <EditTextPreference
75 android:key="js_engine_flags"
76 android:title="@string/js_engine_flags"
77 android:singleLine="true" />
78
The Android Open Source Project0c908882009-03-03 19:32:16 -080079</PreferenceScreen>