1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright (C) 2022 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<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" 18 xmlns:app="http://schemas.android.com/apk/res-auto"> 19 <com.android.settingslib.widget.TopIntroPreference 20 android:order="0" 21 android:key="connected_apps_top_intro"/> 22 <com.android.settingslib.widget.ZeroStatePreference 23 android:key="zero_state_preference" 24 android:title="@string/connected_apps_empty_list_section_title" 25 android:icon="?attr/appsIcon" 26 app:isPreferenceVisible="false"/> 27 <com.android.settingslib.widget.BannerMessagePreferenceGroup 28 android:key="banner_group" 29 app:expandTitle="@string/banner_group_more_items" 30 app:collapseTitle="@string/banner_group_fewer_items" 31 app:collapseIcon="?attr/collapseIcon" 32 android:order="1"/> 33 <PreferenceCategory 34 android:key="things_to_try_app_permissions_screen" 35 android:title="@string/things_to_try" 36 app:isPreferenceVisible="false" 37 android:order="6" /> 38 <PreferenceCategory 39 android:order="2" 40 android:key="allowed_apps" 41 android:title="@string/connected_apps_section_title" 42 app:isPreferenceVisible="false"/> 43 <PreferenceCategory 44 android:order="3" 45 android:key="not_allowed_apps" 46 android:title="@string/not_connected_apps_section_title" 47 app:isPreferenceVisible="false"/> 48 <PreferenceCategory 49 android:order="4" 50 android:key="need_update_apps" 51 android:title="@string/needs_updating_apps_section_title" 52 app:isPreferenceVisible="false"/> 53 <com.android.healthconnect.controller.shared.LongSummaryPreferenceCategory 54 android:order="5" 55 android:key="inactive_apps" 56 android:title="@string/inactive_apps_section_title" 57 android:summary="@string/inactive_apps_section_message" 58 app:isPreferenceVisible="false"/> 59 <PreferenceCategory 60 android:order="6" 61 android:key="settings_and_help" 62 android:title="@string/settings_and_help_header" 63 app:isPreferenceVisible="false"> 64 </PreferenceCategory> 65</PreferenceScreen> 66