1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright (C) 2016 The Android Open Source Project 4 5 Licensed under the Apache License, Version 2.0 (the "License"); 6 you may not use this file except in compliance with the License. 7 You may obtain a copy of the License at 8 9 http://www.apache.org/licenses/LICENSE-2.0 10 11 Unless required by applicable law or agreed to in writing, software 12 distributed under the License is distributed on an "AS IS" BASIS, 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 See the License for the specific language governing permissions and 15 limitations under the License. 16 --> 17 18<PreferenceScreen 19 xmlns:android="http://schemas.android.com/apk/res/android" 20 xmlns:settings="http://schemas.android.com/apk/res-auto" 21 android:key="apps_and_notification_screen" 22 android:title="@string/app_and_notification_dashboard_title" 23 settings:initialExpandedChildrenCount="4"> 24 <!-- the initial count should include the dynamic tiles --> 25 26 <Preference 27 android:key="all_app_info" 28 android:title="@string/applications_settings" 29 android:order="-999" 30 android:fragment="com.android.settings.applications.manageapplications.ManageApplications" 31 settings:controller="com.android.settings.applications.AllAppsInfoPreferenceController" 32 settings:keywords="@string/keywords_applications_settings"/> 33 34 <com.android.settingslib.widget.LayoutPreference 35 android:key="recent_open_apps" 36 android:title="@string/recent_app_category_title" 37 android:layout="@layout/app_entities_header" 38 android:selectable="false" 39 android:order="-998" 40 settings:allowDividerBelow="true" 41 settings:controller="com.android.settings.applications.RecentAppsPreferenceController"/> 42 43 <!-- Empty category to draw divider --> 44 <PreferenceCategory 45 android:key="recent_apps_divider" 46 android:layout="@layout/preference_category_no_label" 47 android:order="-997"/> 48 49 <!-- Notifications (appears before manage_perms), default apps (appears after) --> 50 <PreferenceCategory 51 android:key="dashboard_tile_placeholder" 52 android:order="10"/> 53 54 <Preference 55 android:key="default_apps" 56 android:title="@string/app_default_dashboard_title" 57 android:order="11" 58 settings:controller="com.android.settings.applications.DefaultAppsPreferenceController"> 59 <intent android:action="android.settings.MANAGE_DEFAULT_APPS_SETTINGS"/> 60 </Preference> 61 62 <Preference 63 android:key="manage_perms" 64 android:title="@string/app_permissions" 65 android:order="12" 66 settings:keywords="@string/keywords_app_permissions" 67 settings:controller="com.android.settings.applications.AppPermissionsPreferenceController"> 68 <intent android:action="android.intent.action.MANAGE_PERMISSIONS"/> 69 </Preference> 70 71 <com.android.settingslib.RestrictedPreference 72 android:key="app_and_notif_cell_broadcast_settings" 73 android:title="@string/cell_broadcast_settings" 74 android:order="15" 75 settings:useAdminDisabledSummary="true"> 76 <intent 77 android:action="android.intent.action.MAIN" 78 android:targetPackage="com.android.cellbroadcastreceiver" 79 android:targetClass="com.android.cellbroadcastreceiver.CellBroadcastSettings"/> 80 </com.android.settingslib.RestrictedPreference> 81 82 <Preference 83 android:key="special_access" 84 android:fragment="com.android.settings.applications.specialaccess.SpecialAccessSettings" 85 android:title="@string/special_access" 86 android:order="20" 87 settings:controller="com.android.settings.applications.SpecialAppAccessPreferenceController"/> 88 89</PreferenceScreen> 90