1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  Copyright (C) 2024 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<android:PreferenceScreen
18    xmlns:android="http://schemas.android.com/apk/res/android"
19    android:key="apps_screen"
20    android:title="apps_dashboard_title">
21
22    <Preference
23        android:key="all_app_infos"
24        android:title="All Apps Demo"
25        android:summary="Summary Placeholder"
26        android:order="-999"
27        android:fragment="com.example.android.supportv4.widget.PreferenceScreenDetailsTemplateFragment"
28        />
29
30    <PreferenceCategory
31        android:key="recent_apps_category"
32        android:title="Recent App Category Title"
33        android:order="-998">
34        <!-- Placeholder for a list of recent apps -->
35        <Preference
36            android:key="see_all_apps"
37            android:title="See all Apps Title"
38            android:icon="@drawable/ic_star_on"
39            android:fragment="com.example.android.supportv4.widget.PreferenceScreenDetailsTemplateFragment"
40            android:order="5">
41        </Preference>
42    </PreferenceCategory>
43
44    <PreferenceCategory
45        android:key="general_category"
46        android:title="Category Name General"
47        android:order="-997"
48        android:visibility="gone"/>
49
50    <Preference
51        android:key="default_apps"
52        android:title="App Default Dashboard"
53        android:order="-996"/>
54
55    <Preference
56        android:key="cloned_apps"
57        android:title="Cloned Apps Dashboard"
58        android:summary="Summary Placeholder"
59        android:order="-995"
60        android:fragment="com.example.android.supportv4.widget.PreferenceScreenDetailsTemplateFragment">
61    </Preference>
62
63    <PreferenceCategory
64        android:key="dashboard_tile_placeholder"
65        android:order="10"/>
66
67    <Preference
68        android:key="contacts_storage"
69        android:title="Contacts Storage Settings"
70        android:summary="Summary Placeholder"
71        android:order="13"
72        android:fragment="com.example.android.supportv4.widget.PreferenceScreenDetailsTemplateFragment"
73        >
74    </Preference>
75
76    <Preference
77        android:key="hibernated_apps"
78        android:title="Unused Apps"
79        android:summary="Summary Placeholder"
80        android:order="15"
81        />
82
83    <Preference
84        android:key="app_battery_usage"
85        android:order="17"
86        android:title="App Battery Usage"
87        android:summary="Summary Placeholder"
88        android:fragment="com.example.android.supportv4.widget.PreferenceScreenDetailsTemplateFragment">
89    </Preference>
90
91    <Preference
92        android:key="special_access"
93        android:fragment="com.example.android.supportv4.widget.PreferenceScreenDetailsTemplateFragment"
94        android:title="Special Access"
95        android:order="20"/>
96
97    <PreferenceCategory
98        android:key="advanced_category"
99        android:title="Advanced Apps"
100        android:order="21">
101
102        <Preference
103            android:key="aspect_ratio_apps"
104            android:title="Aspect Ratio Experimental"
105            android:summary="Summary Placeholder"
106            android:order="22"
107            android:fragment="com.example.android.supportv4.widget.PreferenceScreenDetailsTemplateFragment">
108        </Preference>
109    </PreferenceCategory>
110</android:PreferenceScreen>
111