blob: 3d7791c770ae07f911cd064c61966380f4e47f09 [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
Jeff Hamilton462b8e82010-09-23 14:33:43 -050068 android:key="enable_javascript"
69 android:defaultValue="true"
70 android:title="@string/pref_content_javascript" />
71
72 <ListPreference
73 android:key="plugin_state"
74 android:title="@string/pref_content_plugins"
75 android:defaultValue="ON"
76 android:entries="@array/pref_content_plugins_choices"
77 android:entryValues="@array/pref_content_plugins_values"
78 android:dialogTitle="@string/pref_content_plugins" />
79
80 <CheckBoxPreference
81 android:key="open_in_background"
82 android:defaultValue="false"
83 android:title="@string/pref_content_open_in_background"
84 android:summary="@string/pref_content_open_in_background_summary" />
85
86 <com.android.browser.BrowserHomepagePreference
87 android:key="homepage"
88 android:title="@string/pref_content_homepage"
89 android:hint="@string/http"
90 android:inputType="textUri|textMultiLine" />
91
92</PreferenceScreen>