• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 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        android:title="@string/security_settings_title">
19
20    <PreferenceCategory android:title="@string/security_passwords_title"
21            android:persistent="false">
22
23        <Preference
24            android:key="location"
25            android:title="@string/location_settings_title"
26            android:fragment="com.android.settings.location.LocationSettings">
27        </Preference>
28
29        <SwitchPreference
30            android:key="show_password"
31            android:title="@string/show_password"
32            android:summary="@string/show_password_summary"/>
33
34    </PreferenceCategory>
35
36    <PreferenceCategory>
37
38        <Preference android:key="manage_device_admin"
39                android:title="@string/manage_device_admin"
40                android:persistent="false"
41                android:fragment="com.android.settings.DeviceAdminSettings"/>
42
43        <Preference android:key="enterprise_privacy"
44                android:title="@string/enterprise_privacy_settings"
45                android:persistent="false"
46                android:fragment="com.android.settings.enterprise.EnterprisePrivacySettings"/>
47
48    </PreferenceCategory>
49
50    <Preference android:key="sim_lock_settings"
51        android:title="@string/sim_lock_settings_category"
52        android:persistent="false">
53
54        <intent android:action="android.intent.action.MAIN"
55            android:targetPackage="com.android.settings"
56            android:targetClass="com.android.settings.Settings$IccLockSettingsActivity"/>
57
58    </Preference>
59
60    <Preference
61        android:key="encryption_and_credential"
62        android:title="@string/encryption_and_credential_settings_title"
63        android:summary="@string/encryption_and_credential_settings_summary"
64        android:fragment="com.android.settings.EncryptionAndCredential"/>
65
66    <Preference android:key="manage_trust_agents"
67        android:title="@string/manage_trust_agents"
68        android:persistent="false"
69        android:fragment="com.android.settings.TrustAgentSettings"/>
70
71    <Preference
72        android:key="screen_pinning_settings"
73        android:title="@string/screen_pinning_title"
74        android:summary="@string/switch_off_text"
75        android:fragment="com.android.settings.ScreenPinningSettings"/>
76
77    <Preference android:key="usage_access"
78        android:title="@string/usage_access_title"
79        android:fragment="com.android.settings.applications.ManageApplications">
80        <extra
81            android:name="classname"
82            android:value="com.android.settings.Settings$UsageAccessSettingsActivity" />
83    </Preference>
84
85</PreferenceScreen>
86