blob: 84497dc1c0a73d5945ce98297411fac7ce24f59c [file] [log] [blame]
Jeff Hamilton462b8e82010-09-23 14:33:43 -05001<?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">
19
20 <ListPreference
21 android:key="text_size"
22 android:title="@string/pref_text_size"
23 android:defaultValue="NORMAL"
24 android:entries="@array/pref_text_size_choices"
25 android:entryValues="@array/pref_text_size_values"
26 android:dialogTitle="@string/pref_text_size_dialogtitle" />
27
28 <ListPreference
29 android:key="default_zoom"
30 android:title="@string/pref_default_zoom"
31 android:defaultValue="MEDIUM"
32 android:entries="@array/pref_default_zoom_choices"
33 android:entryValues="@array/pref_default_zoom_values"
34 android:dialogTitle="@string/pref_default_zoom_dialogtitle" />
35
36 <CheckBoxPreference
37 android:key="load_page"
38 android:defaultValue="true"
39 android:title="@string/pref_content_load_page"
40 android:summary="@string/pref_content_load_page_summary" />
41
42 <ListPreference
43 android:key="default_text_encoding"
44 android:title="@string/pref_default_text_encoding"
45 android:defaultValue="@string/pref_default_text_encoding_default"
46 android:entries="@array/pref_default_text_encoding_choices"
47 android:entryValues="@array/pref_default_text_encoding_values"
48 android:dialogTitle="@string/pref_default_text_encoding_dialogtitle" />
49
50 <CheckBoxPreference
51 android:key="block_popup_windows"
52 android:defaultValue="true"
53 android:title="@string/pref_content_block_popups" />
54
55 <CheckBoxPreference
56 android:key="load_images"
57 android:defaultValue="true"
58 android:title="@string/pref_content_load_images"
59 android:summary="@string/pref_content_load_images_summary" />
60
61 <CheckBoxPreference
62 android:key="autofit_pages"
63 android:defaultValue="true"
64 android:title="@string/pref_content_autofit"
65 android:summary="@string/pref_content_autofit_summary" />
66
67 <CheckBoxPreference
68 android:key="landscape_only"
69 android:defaultValue="false"
70 android:title="@string/pref_content_landscape_only"
71 android:summary="@string/pref_content_landscape_only_summary" />
72
73 <CheckBoxPreference
74 android:key="enable_javascript"
75 android:defaultValue="true"
76 android:title="@string/pref_content_javascript" />
77
78 <ListPreference
79 android:key="plugin_state"
80 android:title="@string/pref_content_plugins"
81 android:defaultValue="ON"
82 android:entries="@array/pref_content_plugins_choices"
83 android:entryValues="@array/pref_content_plugins_values"
84 android:dialogTitle="@string/pref_content_plugins" />
85
86 <CheckBoxPreference
87 android:key="open_in_background"
88 android:defaultValue="false"
89 android:title="@string/pref_content_open_in_background"
90 android:summary="@string/pref_content_open_in_background_summary" />
91
92 <com.android.browser.BrowserHomepagePreference
93 android:key="homepage"
94 android:title="@string/pref_content_homepage"
95 android:hint="@string/http"
96 android:inputType="textUri|textMultiLine" />
97
98</PreferenceScreen>