blob: 54f3ff030e40f3a7284917e47cc9fa268fd48985 [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
18 xmlns:android="http://schemas.android.com/apk/res/android">
19
20 <com.android.browser.BrowserYesNoPreference
21 android:key="privacy_clear_cache"
22 android:title="@string/pref_privacy_clear_cache"
23 android:summary="@string/pref_privacy_clear_cache_summary"
24 android:dialogMessage="@string/pref_privacy_clear_cache_dlg"
25 android:dialogTitle="@string/clear"
26 android:dialogIcon="@android:drawable/ic_dialog_alert" />
27
28 <com.android.browser.BrowserYesNoPreference
29 android:key="privacy_clear_history"
30 android:title="@string/pref_privacy_clear_history"
31 android:summary="@string/pref_privacy_clear_history_summary"
32 android:dialogMessage="@string/pref_privacy_clear_history_dlg"
33 android:dialogTitle="@string/clear"
34 android:dialogIcon="@android:drawable/ic_dialog_alert"/>
35
36 <CheckBoxPreference
37 android:key="show_security_warnings"
38 android:defaultValue="true"
39 android:title="@string/pref_security_show_security_warning"
40 android:summary="@string/pref_security_show_security_warning_summary" />
41
Patrick Scott539e2ec2011-01-13 11:27:38 -050042 <CheckBoxPreference
43 android:key="enable_autologin"
44 android:title="@string/pref_autologin_title"
45 android:defaultValue="true" />
46
John Reck035a5642010-12-21 18:51:27 -080047 <PreferenceCategory android:title="@string/pref_privacy_cookies_title">
48 <CheckBoxPreference
49 android:key="accept_cookies"
50 android:defaultValue="true"
51 android:title="@string/pref_security_accept_cookies"
52 android:summary="@string/pref_security_accept_cookies_summary" />
53
54 <com.android.browser.BrowserYesNoPreference
55 android:key="privacy_clear_cookies"
56 android:title="@string/pref_privacy_clear_cookies"
57 android:summary="@string/pref_privacy_clear_cookies_summary"
58 android:dialogMessage="@string/pref_privacy_clear_cookies_dlg"
59 android:dialogTitle="@string/clear"
60 android:dialogIcon="@android:drawable/ic_dialog_alert"/>
61 </PreferenceCategory>
62
63 <PreferenceCategory android:title="@string/pref_privacy_formdata_title">
64 <CheckBoxPreference
65 android:key="save_formdata"
66 android:defaultValue="true"
67 android:title="@string/pref_security_save_form_data"
68 android:summary="@string/pref_security_save_form_data_summary" />
69
70 <com.android.browser.BrowserYesNoPreference
71 android:key="privacy_clear_form_data"
72 android:title="@string/pref_privacy_clear_form_data"
73 android:summary="@string/pref_privacy_clear_form_data_summary"
74 android:dialogMessage="@string/pref_privacy_clear_form_data_dlg"
75 android:dialogTitle="@string/clear"
76 android:dialogIcon="@android:drawable/ic_dialog_alert"/>
77 </PreferenceCategory>
78
79 <PreferenceCategory android:title="@string/pref_privacy_location_title">
80 <CheckBoxPreference
81 android:key="enable_geolocation"
82 android:defaultValue="true"
83 android:title="@string/pref_privacy_enable_geolocation"
84 android:summary="@string/pref_privacy_enable_geolocation_summary" />
85
86 <com.android.browser.BrowserYesNoPreference
87 android:key="privacy_clear_geolocation_access"
88 android:dependency="enable_geolocation"
89 android:title="@string/pref_privacy_clear_geolocation_access"
90 android:summary="@string/pref_privacy_clear_geolocation_access_summary"
91 android:dialogMessage="@string/pref_privacy_clear_geolocation_access_dlg"
92 android:dialogTitle="@string/clear"
93 android:dialogIcon="@android:drawable/ic_dialog_alert"/>
94 </PreferenceCategory>
95
96 <PreferenceCategory android:title="@string/pref_security_passwords_title">
97 <CheckBoxPreference
98 android:key="remember_passwords"
99 android:defaultValue="true"
100 android:title="@string/pref_security_remember_passwords"
101 android:summary="@string/pref_security_remember_passwords_summary" />
102
103 <com.android.browser.BrowserYesNoPreference
104 android:key="privacy_clear_passwords"
105 android:title="@string/pref_privacy_clear_passwords"
106 android:summary="@string/pref_privacy_clear_passwords_summary"
107 android:dialogMessage="@string/pref_privacy_clear_passwords_dlg"
108 android:dialogTitle="@string/clear"
109 android:dialogIcon="@android:drawable/ic_dialog_alert"/>
110 </PreferenceCategory>
111
112</PreferenceScreen>