• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!--
2  ~ Copyright (C) 2023 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 xmlns:android="http://schemas.android.com/apk/res/android"
18                  android:title="@string/settings_screen_title">
19
20    <com.android.settingslib.widget.TopIntroPreference
21        android:key="@string/settings_intro_preference_key"
22        android:title="@string/settings_intro"/>
23
24    <PreferenceCategory android:key="@string/settings_restrictions_category_preference_key"
25                        android:order="100"
26                        android:title="@string/settings_restrictions_category"
27                        android:contentDescription="@string/settings_restrictions_category">
28        <Preference android:key="@string/settings_install_apps_preference_key"
29                    android:order="110"
30                    android:layout_height="wrap_content"
31                    android:title="@string/settings_install_apps"
32                    android:selectable="false" />
33        <Preference android:key="@string/settings_safe_mode_preference_key"
34                    android:order="120"
35                    android:layout_height="wrap_content"
36                    android:title="@string/settings_safe_mode"
37                    android:selectable="false" />
38        <Preference android:key="@string/settings_config_date_time_preference_key"
39                    android:order="130"
40                    android:layout_height="wrap_content"
41                    android:title="@string/settings_config_date_time"
42                    android:selectable="false" />
43        <Preference android:key="@string/settings_developer_options_preference_key"
44                    android:order="140"
45                    android:layout_height="wrap_content"
46                    android:title="@string/settings_developer_options"
47                    android:selectable="false" />
48    </PreferenceCategory>
49
50    <PreferenceCategory android:key="@string/settings_credit_provider_capabilities_category_preference_key"
51                        android:order="200"
52                        android:title="@string/settings_credit_provider_capabilities_category"
53                        android:contentDescription="@string/settings_credit_provider_capabilities_category">
54        <Preference android:key="@string/settings_IMEI_preference_key"
55                    android:order="210"
56                    android:layout_height="wrap_content"
57                    android:title="@string/settings_IMEI"
58                    android:selectable="false" />
59        <Preference android:key="@string/settings_factory_reset_preference_key"
60                    android:order="220"
61                    android:layout_height="wrap_content"
62                    android:title="@string/settings_factory_reset"
63                    android:selectable="false" />
64    </PreferenceCategory>
65
66    <PreferenceCategory android:key="@string/settings_locked_mode_category_preference_key"
67                        android:order="300"
68                        android:title="@string/settings_locked_mode_category"
69                        android:contentDescription="@string/settings_locked_mode_category">
70        <Preference android:key="@string/settings_emergency_calls_preference_key"
71                    android:order="310"
72                    android:layout_height="wrap_content"
73                    android:title="@string/settings_emergency_calls"
74                    android:selectable="false" />
75        <Preference android:key="@string/settings_system_info_preference_key"
76                    android:order="320"
77                    android:layout_height="wrap_content"
78                    android:title="@string/settings_system_info"
79                    android:selectable="false" />
80        <Preference android:key="@string/settings_turn_on_off_device_preference_key"
81                    android:order="330"
82                    android:layout_height="wrap_content"
83                    android:title="@string/settings_turn_on_off_device"
84                    android:selectable="false" />
85        <Preference android:key="@string/settings_notifications_preference_key"
86                    android:order="340"
87                    android:layout_height="wrap_content"
88                    android:title="@string/settings_notifications"
89                    android:selectable="false" />
90        <Preference android:key="@string/settings_allowlisted_apps_preference_key"
91                    android:order="350"
92                    android:layout_height="wrap_content"
93                    android:title="@string/settings_allowlisted_apps"
94                    android:selectable="false" />
95    </PreferenceCategory>
96
97    <PreferenceCategory android:key="@string/settings_fully_paid_category_preference_key"
98                        android:order="400"
99                        android:title="@string/settings_fully_paid_category"
100                        android:contentDescription="@string/settings_fully_paid_category">
101        <Preference android:key="@string/settings_restrictions_removed_preference_key"
102                    android:order="410"
103                    android:layout_height="wrap_content"
104                    android:title="@string/settings_restrictions_removed"
105                    android:selectable="false" />
106        <Preference android:key="@string/settings_uninstall_kiosk_app_preference_key"
107                    android:order="420"
108                    android:layout_height="wrap_content"
109                    android:title="@string/settings_uninstall_kiosk_app"
110                    android:selectable="false" />
111    </PreferenceCategory>
112</PreferenceScreen>
113