blob: 9bff4b8227d935a6a6f5d671baaf040d37aa6015 [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
John Reck812d2d62011-01-18 14:16:15 -080042 <ListPreference
43 android:key="autologin_account"
44 android:title="@string/pref_autologin_title" />
Patrick Scott539e2ec2011-01-13 11:27:38 -050045
John Reck035a5642010-12-21 18:51:27 -080046 <PreferenceCategory android:title="@string/pref_privacy_cookies_title">
47 <CheckBoxPreference
48 android:key="accept_cookies"
49 android:defaultValue="true"
50 android:title="@string/pref_security_accept_cookies"
51 android:summary="@string/pref_security_accept_cookies_summary" />
52
53 <com.android.browser.BrowserYesNoPreference
54 android:key="privacy_clear_cookies"
55 android:title="@string/pref_privacy_clear_cookies"
56 android:summary="@string/pref_privacy_clear_cookies_summary"
57 android:dialogMessage="@string/pref_privacy_clear_cookies_dlg"
58 android:dialogTitle="@string/clear"
59 android:dialogIcon="@android:drawable/ic_dialog_alert"/>
60 </PreferenceCategory>
61
62 <PreferenceCategory android:title="@string/pref_privacy_formdata_title">
63 <CheckBoxPreference
64 android:key="save_formdata"
65 android:defaultValue="true"
66 android:title="@string/pref_security_save_form_data"
67 android:summary="@string/pref_security_save_form_data_summary" />
68
69 <com.android.browser.BrowserYesNoPreference
70 android:key="privacy_clear_form_data"
71 android:title="@string/pref_privacy_clear_form_data"
72 android:summary="@string/pref_privacy_clear_form_data_summary"
73 android:dialogMessage="@string/pref_privacy_clear_form_data_dlg"
74 android:dialogTitle="@string/clear"
75 android:dialogIcon="@android:drawable/ic_dialog_alert"/>
76 </PreferenceCategory>
77
78 <PreferenceCategory android:title="@string/pref_privacy_location_title">
79 <CheckBoxPreference
80 android:key="enable_geolocation"
81 android:defaultValue="true"
82 android:title="@string/pref_privacy_enable_geolocation"
83 android:summary="@string/pref_privacy_enable_geolocation_summary" />
84
85 <com.android.browser.BrowserYesNoPreference
86 android:key="privacy_clear_geolocation_access"
87 android:dependency="enable_geolocation"
88 android:title="@string/pref_privacy_clear_geolocation_access"
89 android:summary="@string/pref_privacy_clear_geolocation_access_summary"
90 android:dialogMessage="@string/pref_privacy_clear_geolocation_access_dlg"
91 android:dialogTitle="@string/clear"
92 android:dialogIcon="@android:drawable/ic_dialog_alert"/>
93 </PreferenceCategory>
94
95 <PreferenceCategory android:title="@string/pref_security_passwords_title">
96 <CheckBoxPreference
97 android:key="remember_passwords"
98 android:defaultValue="true"
99 android:title="@string/pref_security_remember_passwords"
100 android:summary="@string/pref_security_remember_passwords_summary" />
101
102 <com.android.browser.BrowserYesNoPreference
103 android:key="privacy_clear_passwords"
104 android:title="@string/pref_privacy_clear_passwords"
105 android:summary="@string/pref_privacy_clear_passwords_summary"
106 android:dialogMessage="@string/pref_privacy_clear_passwords_dlg"
107 android:dialogTitle="@string/clear"
108 android:dialogIcon="@android:drawable/ic_dialog_alert"/>
109 </PreferenceCategory>
110
111</PreferenceScreen>