1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2016 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 xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"> 20 21 <PreferenceScreen 22 android:key="high_power_apps" 23 android:title="@string/high_power_apps" 24 android:fragment="com.android.settings.applications.ManageApplications" 25 settings:keywords="@string/keywords_ignore_optimizations"> 26 <extra 27 android:name="classname" 28 android:value="com.android.settings.Settings$HighPowerApplicationsActivity" /> 29 </PreferenceScreen> 30 31 <PreferenceScreen 32 android:key="device_administrators" 33 android:title="@string/manage_device_admin" 34 android:fragment="com.android.settings.DeviceAdminSettings" /> 35 36 <PreferenceScreen 37 android:key="zen_access" 38 android:title="@string/manage_zen_access_title" 39 android:fragment="com.android.settings.notification.ZenAccessSettings" /> 40 41 <PreferenceScreen 42 android:key="system_alert_window" 43 android:title="@string/system_alert_window_settings" 44 android:fragment="com.android.settings.applications.ManageApplications" 45 settings:keywords="@string/keywords_system_alert_window"> 46 <extra 47 android:name="classname" 48 android:value="com.android.settings.Settings$OverlaySettingsActivity" /> 49 </PreferenceScreen> 50 51 <PreferenceScreen 52 android:key="enabled_vr_listeners" 53 android:title="@string/vr_listeners_title" 54 android:fragment="com.android.settings.applications.VrListenerSettings" 55 settings:keywords="@string/keywords_vr_listener"> 56 <extra 57 android:name="classname" 58 android:value="com.android.settings.Settings$VrListenersSettingsActivity" /> 59 </PreferenceScreen> 60 61 <PreferenceScreen 62 android:key="write_settings_apps" 63 android:title="@string/write_settings" 64 android:fragment="com.android.settings.applications.ManageApplications" 65 settings:keywords="@string/keywords_write_settings"> 66 <extra 67 android:name="classname" 68 android:value="com.android.settings.Settings$WriteSettingsActivity" /> 69 </PreferenceScreen> 70 71 <PreferenceScreen 72 android:key="notification_access" 73 android:title="@string/manage_notification_access_title" 74 android:fragment="com.android.settings.notification.NotificationAccessSettings" /> 75 76 <PreferenceScreen 77 android:key="premium_sms" 78 android:title="@string/premium_sms_access" 79 android:fragment="com.android.settings.applications.PremiumSmsAccess" /> 80 81 <PreferenceScreen 82 android:key="data_saver" 83 android:title="@string/unrestricted_data_saver" 84 android:fragment="com.android.settings.datausage.UnrestrictedDataAccess" /> 85 86 <PreferenceScreen 87 android:key="usage_access" 88 android:title="@string/usage_access" 89 android:fragment="com.android.settings.applications.ManageApplications" 90 settings:keywords="@string/keywords_write_settings"> 91 <extra 92 android:name="classname" 93 android:value="com.android.settings.Settings$UsageAccessSettingsActivity" /> 94 </PreferenceScreen> 95 </PreferenceScreen> 96