blob: a1f2d25658fee621325cd86bbd96a70b8abab0b0 [file] [log] [blame]
John Reck035a5642010-12-21 18:51:27 -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 xmlns:android="http://schemas.android.com/apk/res/android">
18
Pankaj Gargb3b57462014-11-18 17:28:30 -080019 <PreferenceCategory android:title="@string/pref_general_title">
20 <com.android.browser.preferences.NonformattingListPreference
21 android:key="homepage_picker"
22 android:entries="@array/pref_homepage_choices"
23 android:entryValues="@array/pref_homepage_values"
24 android:title="@string/pref_content_homepage" />
John Reck035a5642010-12-21 18:51:27 -080025
Pankaj Gargb3b57462014-11-18 17:28:30 -080026 <com.android.browser.search.SearchEnginePreference
Panos Thomas42459d72014-12-02 08:24:06 -080027 android:defaultValue="@string/default_search_engine_value"
Pankaj Gargb3b57462014-11-18 17:28:30 -080028 android:dialogTitle="@string/pref_content_search_engine"
29 android:key="search_engine"
30 android:summary="@string/pref_content_search_engine_summary"
31 android:title="@string/pref_content_search_engine" />
32
33 <CheckBoxPreference
34 android:defaultValue="false"
35 android:key="fullscreen"
36 android:summary="@string/pref_lab_fullscreen_summary"
37 android:title="@string/pref_lab_fullscreen" />
38
39 <CheckBoxPreference
40 android:key="autofill_enabled"
John Reck035a5642010-12-21 18:51:27 -080041 android:title="@string/pref_autofill_enabled"
42 android:summary="@string/pref_autofill_enabled_summary"
Pankaj Gargb3b57462014-11-18 17:28:30 -080043 android:defaultValue="true" />
John Reck035a5642010-12-21 18:51:27 -080044
45 <PreferenceScreen
John Reck035a5642010-12-21 18:51:27 -080046 android:key="autofill_profile"
47 android:title="@string/pref_autofill_profile_editor"
48 android:summary="@string/pref_autofill_profile_editor_summary" />
49 </PreferenceCategory>
50
Pankaj Gargb3b57462014-11-18 17:28:30 -080051 <PreferenceCategory android:title="@string/pref_extras_title"
52 android:key="advanced">
53
Pankaj Garge2305022015-03-20 14:11:01 -070054 <PreferenceScreen android:title="@string/pref_privacy_security_title"
55 android:key="privacy_security">
56 <PreferenceScreen android:title="@string/webstorage_clear_data_title"
57 android:key="clear_data">
Pankaj Gargb3b57462014-11-18 17:28:30 -080058 <com.android.browser.BrowserYesNoPreference
59 android:dialogIcon="@android:drawable/ic_dialog_alert"
60 android:dialogMessage="@string/pref_privacy_clear_selected_dlg"
61 android:key="privacy_clear_selected"
62 android:summary="@string/pref_privacy_clear_selected_summary"
63 android:title="@string/pref_privacy_clear_selected" />
64
65 <CheckBoxPreference
66 android:defaultValue="true"
67 android:key="privacy_clear_history"
68 android:summary="@string/pref_privacy_clear_history_summary"
69 android:title="@string/pref_privacy_clear_history" />
70
71 <CheckBoxPreference
72 android:defaultValue="true"
73 android:key="privacy_clear_cache"
74 android:summary="@string/pref_privacy_clear_cache_summary"
75 android:title="@string/pref_privacy_clear_cache" />
76
77 <CheckBoxPreference
78 android:defaultValue="true"
79 android:key="privacy_clear_cookies"
80 android:summary="@string/pref_privacy_clear_cookies_summary"
81 android:title="@string/pref_privacy_clear_cookies" />
82
83 <CheckBoxPreference
84 android:defaultValue="true"
85 android:key="privacy_clear_form_data"
86 android:summary="@string/pref_privacy_clear_form_data_summary"
87 android:title="@string/pref_privacy_clear_form_data" />
88
89 <CheckBoxPreference
90 android:defaultValue="true"
91 android:key="privacy_clear_passwords"
92 android:summary="@string/pref_privacy_clear_passwords_summary"
93 android:title="@string/pref_privacy_clear_passwords" />
94
95 <CheckBoxPreference
96 android:defaultValue="true"
97 android:dependency="enable_geolocation"
98 android:key="privacy_clear_geolocation_access"
99 android:summary="@string/pref_privacy_clear_geolocation_access_summary"
100 android:title="@string/pref_privacy_clear_geolocation_access" />
101
102 </PreferenceScreen>
103
104 <CheckBoxPreference
105 android:defaultValue="true"
106 android:key="show_security_warnings"
107 android:summary="@string/pref_security_show_security_warning_summary"
108 android:title="@string/pref_security_show_security_warning" />
109
110 <CheckBoxPreference
111 android:defaultValue="true"
112 android:key="do_not_track"
113 android:summary="@string/pref_do_not_track_summary"
114 android:title="@string/pref_do_not_track" />
115
116 <CheckBoxPreference
117 android:defaultValue="true"
118 android:key="accept_cookies"
119 android:summary="@string/pref_security_accept_cookies_summary"
120 android:title="@string/pref_security_accept_cookies" />
121
122 <CheckBoxPreference
123 android:defaultValue="true"
124 android:key="save_formdata"
125 android:summary="@string/pref_security_save_form_data_summary"
126 android:title="@string/pref_security_save_form_data" />
127
128 <CheckBoxPreference
129 android:defaultValue="true"
130 android:key="enable_geolocation"
131 android:summary="@string/pref_privacy_enable_geolocation_summary"
132 android:title="@string/pref_privacy_enable_geolocation" />
133
134 <CheckBoxPreference
135 android:defaultValue="true"
136 android:key="remember_passwords"
137 android:summary="@string/pref_security_remember_passwords_summary"
138 android:title="@string/pref_security_remember_passwords" />
139
140 </PreferenceScreen>
141
Pankaj Garg4cad0782014-12-03 10:00:08 -0800142 <PreferenceScreen
143 android:key="accessibility_menu"
144 android:title="@string/pref_accessibility_title" />
Pankaj Gargb3b57462014-11-18 17:28:30 -0800145
146
Panos Thomas4bdb5252014-11-13 16:20:11 -0800147 <PreferenceScreen android:title="@string/pref_content_title"
148 android:key="content_settings">
Pankaj Gargb3b57462014-11-18 17:28:30 -0800149 <CheckBoxPreference
150 android:defaultValue="true"
151 android:key="block_popup_windows"
152 android:title="@string/pref_content_block_popups" />
153
154 <CheckBoxPreference
155 android:defaultValue="false"
156 android:key="open_in_background"
157 android:summary="@string/pref_content_open_in_background_summary"
158 android:title="@string/pref_content_open_in_background" />
159
160 <CheckBoxPreference
161 android:defaultValue="true"
162 android:key="enable_javascript"
163 android:title="@string/pref_content_javascript" />
164
Pankaj Gargb3b57462014-11-18 17:28:30 -0800165 <PreferenceScreen
166 android:key="download_path_setting_screen"
167 android:title="@string/pref_download_path_setting_screen_title"/>
Tarun Nainani95b79682014-12-09 09:38:04 -0800168
169 <ListPreference
170 android:defaultValue="@string/pref_default_text_encoding_default"
171 android:dialogTitle="@string/pref_default_text_encoding_dialogtitle"
172 android:entries="@array/pref_default_text_encoding_choices"
173 android:entryValues="@array/pref_default_text_encoding_values"
174 android:key="default_text_encoding"
175 android:title="@string/pref_default_text_encoding" />
176
Pankaj Garg361ac5c2015-01-27 15:15:13 -0800177 <CheckBoxPreference
178 android:key="load_images"
179 android:defaultValue="true"
180 android:title="@string/pref_content_load_images"
181 android:summary="@string/pref_content_load_images_summary" />
182
Pankaj Gargb3b57462014-11-18 17:28:30 -0800183 </PreferenceScreen>
184
185
186 <PreferenceScreen
187 android:key="website_settings"
188 android:summary="@string/pref_extras_website_settings_summary"
189 android:title="@string/pref_extras_website_settings" />
190
191 <com.android.browser.BrowserYesNoPreference
192 android:key="reset_default_preferences"
193 android:title="@string/pref_extras_reset_default"
194 android:summary="@string/pref_extras_reset_default_summary"
195 android:dialogMessage="@string/pref_extras_reset_default_dlg"
196 android:dialogIcon="@android:drawable/ic_dialog_alert" />
197
198 <PreferenceScreen
199 android:key="debug_menu"
200 android:title="@string/pref_development_title" />
201 </PreferenceCategory>
John Reck035a5642010-12-21 18:51:27 -0800202</PreferenceScreen>