blob: dc6b723013261182efef0742e38976e242a40432 [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
Vivek Sekhar7b3d2da2014-11-13 16:20:11 -080017<PreferenceScreen
The Android Open Source Project0c908882009-03-03 19:32:16 -080018 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"
Derek Sollenberger3a301c62011-10-17 13:05:45 -040028 android:title="@string/pref_development_hardware_accel_skia"
29 android:enabled="false" />
Derek Sollenberger31adf672011-07-08 11:31:30 -040030
John Reckf48314f2011-04-27 17:52:17 -070031 <CheckBoxPreference
32 android:key="enable_visual_indicator"
33 android:defaultValue="false"
34 android:title="@string/pref_development_visual_indicator" />
35
Teng-Hui Zhu85de57a2011-09-22 15:34:29 -070036 <CheckBoxPreference
37 android:key="enable_cpu_upload_path"
Teng-Hui Zhudbe001b2011-09-30 10:37:01 -070038 android:defaultValue="false"
Teng-Hui Zhu85de57a2011-09-22 15:34:29 -070039 android:title="@string/pref_development_cpu_upload_path" />
40
John Reckf48314f2011-04-27 17:52:17 -070041 <CheckBoxPreference
42 android:key="small_screen"
43 android:defaultValue="false"
44 android:title="@string/pref_development_single_column_rendering" />
45
46 <CheckBoxPreference
47 android:key="wide_viewport"
48 android:defaultValue="true"
49 android:title="@string/pref_development_viewport" />
50
51 <CheckBoxPreference
52 android:key="normal_layout"
53 android:defaultValue="false"
54 android:title="@string/pref_development_normal_rendering" />
55
56 <CheckBoxPreference
57 android:key="enable_tracing"
58 android:defaultValue="false"
59 android:title="@string/pref_development_trace" />
60
61 <CheckBoxPreference
62 android:key="enable_light_touch"
63 android:defaultValue="false"
64 android:title="Enable light touch" />
65
66 <CheckBoxPreference
67 android:key="enable_nav_dump"
68 android:defaultValue="false"
69 android:title="@string/pref_development_nav_dump" />
70
71 <EditTextPreference
72 android:key="js_engine_flags"
73 android:title="@string/js_engine_flags"
74 android:singleLine="true" />
75
The Android Open Source Project0c908882009-03-03 19:32:16 -080076</PreferenceScreen>