1<?xml version="1.0" encoding="utf-8"?><!-- 2 ~ Copyright 2024 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 ~ https://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 --> 18 19<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" 20 xmlns:app="http://schemas.android.com/apk/res-auto"> 21 <com.android.settingslib.widget.AppHeaderPreference 22 android:key="app_header_preference" /> 23 <com.android.healthconnect.controller.shared.preference.HealthSwitchPreference 24 android:key="key_history_read" 25 android:title="@string/history_read_combined_request_title" 26 android:summary="@string/history_read_combined_request_description" 27 app:isPreferenceVisible="false" 28 /> 29 30 <com.android.healthconnect.controller.shared.preference.WarningPreference 31 android:key="key_warning" 32 app:isPreferenceVisible="false" /> 33 34 <com.android.healthconnect.controller.shared.preference.HealthSwitchPreference 35 android:key="key_background_read" 36 android:title="@string/background_read_combined_request_title" 37 android:summary="@string/background_read_combined_request_description" 38 app:isPreferenceVisible="false" 39 /> 40 41 <com.android.healthconnect.controller.shared.preference.HealthPreference 42 android:key="key_exercise_routes_permission" 43 android:title="@string/route_permissions_label" 44 app:isPreferenceVisible="false" /> 45 46 <com.android.settingslib.widget.FooterPreference 47 android:key="key_additional_access_footer" 48 android:title="@string/additional_access_combined_footer" 49 app:isPreferenceVisible="false"/> 50 51</PreferenceScreen>