Files
android_development/samples/ApiDemos/res/xml/device_admin_general.xml
Jim Miller d4adb57e07 Update TrustAgentService API after review
Add test for DPM.setTrustAgentConfiguration()

Also fixes bug where DPM flags were set in onPreferenceChanged()
which happened before being set on the checkbox preference.

Fixes bug 17008504

Change-Id: I165cd73d11c0a68ee6667cb1fd88892a39267903
2014-11-03 18:48:45 -08:00

76 lines
2.6 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_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>