1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright (C) 2020 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_screen" 22 android:title="@string/apps_dashboard_title"> 23 24 <Preference 25 android:key="all_app_infos" 26 android:title="@string/all_apps" 27 android:summary="@string/summary_placeholder" 28 android:order="-999" 29 android:fragment="com.android.settings.applications.manageapplications.ManageApplications" 30 settings:keywords="@string/keywords_applications_settings"/> 31 32 <PreferenceCategory 33 android:key="recent_apps_category" 34 android:title="@string/recent_app_category_title" 35 android:order="-998" 36 settings:searchable="false"> 37 <!-- Placeholder for a list of recent apps --> 38 39 <!-- See all apps --> 40 <Preference 41 android:key="see_all_apps" 42 android:title="@string/default_see_all_apps_title" 43 android:icon="@drawable/ic_chevron_right_24dp" 44 android:fragment="com.android.settings.applications.manageapplications.ManageApplications" 45 android:order="5" 46 settings:searchable="false"> 47 </Preference> 48 </PreferenceCategory> 49 50 <PreferenceCategory 51 android:key="general_category" 52 android:title="@string/category_name_general" 53 android:order="-997" 54 android:visibility="gone" 55 settings:searchable="false"/> 56 57 <Preference 58 android:key="default_apps" 59 android:title="@string/app_default_dashboard_title" 60 android:order="-996" 61 settings:controller="com.android.settings.applications.DefaultAppsPreferenceController"> 62 <intent android:action="android.settings.MANAGE_DEFAULT_APPS_SETTINGS"/> 63 </Preference> 64 65 <Preference 66 android:key="game_settings" 67 android:title="@string/game_settings_title" 68 android:summary="@string/game_settings_summary" 69 android:order="-995" 70 settings:controller="com.android.settings.applications.GameSettingsPreferenceController"> 71 </Preference> 72 73 <PreferenceCategory 74 android:key="dashboard_tile_placeholder" 75 android:order="10"/> 76 77 <Preference 78 android:key="hibernated_apps" 79 android:title="@string/unused_apps" 80 android:summary="@string/summary_placeholder" 81 android:order="15" 82 settings:keywords="app_hibernation_key" 83 settings:controller="com.android.settings.applications.HibernatedAppsPreferenceController"> 84 <intent android:action="android.intent.action.MANAGE_UNUSED_APPS"/> 85 </Preference> 86 87 <Preference 88 android:key="special_access" 89 android:fragment="com.android.settings.applications.specialaccess.SpecialAccessSettings" 90 android:title="@string/special_access" 91 android:order="20" 92 settings:controller="com.android.settings.applications.SpecialAppAccessPreferenceController"/> 93 94</PreferenceScreen> 95