1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright (C) 2017 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 18 xmlns:android="http://schemas.android.com/apk/res/android" 19 xmlns:settings="http://schemas.android.com/apk/res-auto" 20 android:title="@string/device_details_title"> 21 22 <com.android.settingslib.widget.LayoutPreference 23 android:key="bluetooth_device_header" 24 android:layout="@layout/settings_entity_header" 25 android:selectable="false" 26 settings:allowDividerBelow="true" 27 settings:searchable="false"/> 28 29 <com.android.settingslib.widget.LayoutPreference 30 android:key="advanced_bluetooth_device_header" 31 android:layout="@layout/advanced_bt_entity_header" 32 android:selectable="false" 33 settings:allowDividerBelow="true" 34 settings:searchable="false" 35 settings:controller="com.android.settings.bluetooth.AdvancedBluetoothDetailsHeaderController"/> 36 37 <com.android.settingslib.widget.LayoutPreference 38 android:key="le_audio_bluetooth_device_header" 39 android:layout="@layout/le_audio_bt_entity_header" 40 android:selectable="false" 41 settings:allowDividerBelow="true" 42 settings:searchable="false" 43 settings:controller="com.android.settings.bluetooth.LeAudioBluetoothDetailsHeaderController"/> 44 45 <com.android.settingslib.widget.ButtonPreference 46 android:key="hearing_aid_pair_other_button" 47 android:gravity="center"/> 48 <com.android.settings.applications.SpacePreference 49 android:key="hearing_aid_space_layout" 50 android:layout_height="8dp"/> 51 52 <com.android.settingslib.widget.ActionButtonsPreference 53 android:key="action_buttons" 54 settings:allowDividerBelow="true"/> 55 56 <PreferenceCategory 57 android:key="device_stylus"/> 58 59 <com.android.settings.slices.SlicePreference 60 android:key="bt_extra_control" 61 settings:controller="com.android.settings.slices.SlicePreferenceController" 62 settings:allowDividerAbove="true"/> 63 64 <PreferenceCategory 65 android:key="bt_device_slice_category" 66 settings:controller="com.android.settings.bluetooth.BlockingPrefWithSliceController"/> 67 68 <PreferenceCategory 69 android:key="device_companion_apps"/> 70 71 <PreferenceCategory 72 android:key="device_controls_general" /> 73 74 <PreferenceCategory 75 android:key="bluetooth_audio_device_type_group"/> 76 77 <PreferenceCategory 78 android:key="spatial_audio_group"/> 79 80 <PreferenceCategory 81 android:key="bluetooth_profiles"/> 82 83 <PreferenceCategory 84 android:key="bluetooth_related_tools" 85 android:title="@string/bluetooth_screen_related"> 86 <Preference 87 android:key="live_caption" 88 android:icon="@drawable/ic_live_caption" 89 android:persistent="false" 90 android:summary="@string/live_caption_summary" 91 android:title="@string/live_caption_title" 92 settings:controller="com.android.settings.accessibility.LiveCaptionPreferenceController"/> 93 </PreferenceCategory> 94 95 <PreferenceCategory 96 android:key="data_sync_group"/> 97 98 <Preference 99 android:key="keyboard_settings" 100 android:persistent="false" 101 android:title="@string/bluetooth_device_keyboard_settings_preference_title" 102 settings:controller="com.android.settings.inputmethod.KeyboardSettingsPreferenceController"/> 103 104 <com.android.settingslib.widget.FooterPreference 105 android:key="device_details_footer" 106 android:selectable="false" 107 settings:searchable="false" 108 settings:controller="com.android.settings.bluetooth.BluetoothDetailsMacAddressController"/> 109 110</PreferenceScreen> 111