blob: 54b2bd5e86da88f58af58bce3a058647b6587666 [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
Jeff Hamilton462b8e82010-09-23 14:33:43 -050020 <!-- The javascript console is enabled by default when the user has
21 also enabled debug mode by navigating to about:debug. -->
22 <CheckBoxPreference
23 android:key="javascript_console"
24 android:defaultValue="true"
25 android:title="@string/pref_development_error_console" />
The Android Open Source Project0c908882009-03-03 19:32:16 -080026
Jeff Hamilton462b8e82010-09-23 14:33:43 -050027 <CheckBoxPreference
28 android:key="small_screen"
29 android:defaultValue="false"
30 android:title="@string/pref_development_single_column_rendering" />
31
32 <CheckBoxPreference
33 android:key="wide_viewport"
34 android:defaultValue="true"
35 android:title="@string/pref_development_viewport" />
36
37 <CheckBoxPreference
38 android:key="normal_layout"
39 android:defaultValue="false"
40 android:title="@string/pref_development_normal_rendering" />
The Android Open Source Project0c908882009-03-03 19:32:16 -080041
Jeff Hamilton462b8e82010-09-23 14:33:43 -050042 <CheckBoxPreference
43 android:key="enable_tracing"
44 android:defaultValue="false"
45 android:title="@string/pref_development_trace" />
The Android Open Source Project0c908882009-03-03 19:32:16 -080046
Jeff Hamilton462b8e82010-09-23 14:33:43 -050047 <CheckBoxPreference
48 android:key="enable_light_touch"
49 android:defaultValue="false"
50 android:title="Enable light touch" />
The Android Open Source Project0c908882009-03-03 19:32:16 -080051
Jeff Hamilton462b8e82010-09-23 14:33:43 -050052 <CheckBoxPreference
53 android:key="enable_nav_dump"
54 android:defaultValue="false"
55 android:title="@string/pref_development_nav_dump" />
The Android Open Source Project0c908882009-03-03 19:32:16 -080056
Jeff Hamilton462b8e82010-09-23 14:33:43 -050057 <EditTextPreference
58 android:key="js_engine_flags"
59 android:title="@string/js_engine_flags"
60 android:singleLine="true" />
The Android Open Source Project0c908882009-03-03 19:32:16 -080061
Jeff Hamilton462b8e82010-09-23 14:33:43 -050062 <ListPreference
63 android:key="user_agent"
64 android:title="@string/pref_development_uastring"
65 android:entries="@array/pref_development_ua_choices"
66 android:entryValues="@array/pref_development_ua_values"
67 android:defaultValue="0"/>
The Android Open Source Project0c908882009-03-03 19:32:16 -080068
69</PreferenceScreen>