blob: 8f8d296c36e7eff004a25c006700794feb8427a8 [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
Derek Sollenbergerffa561e2010-11-16 14:19:01 -050057 <CheckBoxPreference
58 android:key="enable_hardware_accel"
Derek Sollenberger8de82852010-11-18 19:51:50 -050059 android:defaultValue="true"
Derek Sollenbergerffa561e2010-11-16 14:19:01 -050060 android:title="@string/pref_development_hardware_accel" />
61
Jeff Hamilton462b8e82010-09-23 14:33:43 -050062 <EditTextPreference
63 android:key="js_engine_flags"
64 android:title="@string/js_engine_flags"
65 android:singleLine="true" />
The Android Open Source Project0c908882009-03-03 19:32:16 -080066
Jeff Hamilton462b8e82010-09-23 14:33:43 -050067 <ListPreference
68 android:key="user_agent"
69 android:title="@string/pref_development_uastring"
70 android:entries="@array/pref_development_ua_choices"
71 android:entryValues="@array/pref_development_ua_values"
72 android:defaultValue="0"/>
The Android Open Source Project0c908882009-03-03 19:32:16 -080073
74</PreferenceScreen>