Files
android_development/samples/ApiDemos/res/xml/device_admin_general.xml
Adrian Roos 1052d438de Update Sample Device Admin
Adds options to exercise the newly added KEYGUARD_DISABLE_REMOTE_INPUT
and not so newly added KEYGUARD_DISABLE_FINGERPRINT.

Change-Id: I0e2a05f2a668b7d8ceacde3abcf5f8c80cb4bdb9
Fixes: 26981262
2016-05-11 15:51:11 -04:00

84 lines
2.9 KiB
XML

<?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>