You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.9 KiB
84 lines
2.9 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2011 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<!-- A set of preferences used to exercise the DevicePolicyManager API. -->
|
|
<!-- This screen is shown for the "General" header. -->
|
|
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
|
|
<PreferenceCategory
|
|
android:title="@string/enable_admin" >
|
|
|
|
<CheckBoxPreference
|
|
android:key="key_enable_admin"
|
|
android:title="@string/enable_admin" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
android:title="@string/device_capabilities_category" >
|
|
|
|
<CheckBoxPreference
|
|
android:key="key_disable_camera"
|
|
android:title="@string/disable_camera" />
|
|
|
|
<CheckBoxPreference
|
|
android:key="key_disable_keyguard_widgets"
|
|
android:title="@string/disable_keyguard_widgets" />
|
|
|
|
<CheckBoxPreference
|
|
android:key="key_disable_keyguard_secure_camera"
|
|
android:title="@string/disable_keyguard_secure_camera" />
|
|
|
|
<CheckBoxPreference
|
|
android:key="key_disable_notifications"
|
|
android:title="@string/disable_keyguard_notifications" />
|
|
|
|
<CheckBoxPreference
|
|
android:key="key_disable_unredacted"
|
|
android:title="@string/disable_keyguard_unredacted_notifications" />
|
|
|
|
<CheckBoxPreference
|
|
android:key="key_disable_fingerprint"
|
|
android:title="@string/disable_keyguard_fingerprint" />
|
|
|
|
<CheckBoxPreference
|
|
android:key="key_disable_remote_input"
|
|
android:title="@string/disable_keyguard_remote_input" />
|
|
|
|
<CheckBoxPreference
|
|
android:key="key_disable_trust_agents"
|
|
android:title="@string/disable_keyguard_trust_agents" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
android:title="@string/trust_agent_category" >
|
|
|
|
<EditTextPreference
|
|
android:key="key_trust_agent_component"
|
|
android:title="@string/set_trust_agent_component_name"
|
|
android:dialogTitle="@string/set_trust_agent_component_name" />
|
|
|
|
<EditTextPreference
|
|
android:key="key_trust_agent_features"
|
|
android:title="@string/set_trust_agent_feature_list"
|
|
android:dialogTitle="@string/set_trust_agent_feature_list" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|