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 android:key="data_access_screen"> 19 <com.android.settingslib.widget.AppHeaderPreference 20 android:key="data_access_header"/> 21 <com.android.settingslib.widget.TopIntroPreference 22 android:key="permission_type_description"/> 23 <PreferenceCategory 24 android:key="can_read"> 25 </PreferenceCategory> 26 <PreferenceCategory 27 android:key="can_write"> 28 </PreferenceCategory> 29 <PreferenceCategory 30 android:key="inactive" 31 android:title="@string/inactive_apps"> 32 </PreferenceCategory> 33 <PreferenceCategory 34 android:key="manage_data" 35 android:title="@string/manage_data_section"> 36 <com.android.healthconnect.controller.shared.preference.HealthPreference 37 android:key="all_entries_button" 38 android:icon="?attr/seeAllEntriesIcon" 39 android:title="@string/all_entries_button" /> 40 <com.android.healthconnect.controller.shared.preference.HealthPreference 41 android:key="delete_permission_type_data" 42 android:icon="?attr/deleteIcon" 43 android:title="@string/delete_permission_type_data_button" /> 44 </PreferenceCategory> 45</PreferenceScreen> 46