1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2019 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 18 xmlns:android="http://schemas.android.com/apk/res/android" 19 xmlns:settings="http://schemas.android.com/apk/res-auto" 20 android:key="connected_devices_advanced_screen" 21 android:title="@string/connected_device_connections_title"> 22 23 <Preference 24 android:fragment="com.android.car.developeroptions.connecteddevice.BluetoothDashboardFragment" 25 android:key="bluetooth_settings" 26 android:title="@string/bluetooth_settings_title" 27 android:icon="@*android:drawable/ic_settings_bluetooth" 28 android:order="-9" 29 settings:searchable="false"/> 30 31 <SwitchPreference 32 android:key="toggle_nfc" 33 android:title="@string/nfc_quick_toggle_title" 34 android:icon="@drawable/ic_nfc" 35 android:summary="@string/nfc_quick_toggle_summary" 36 settings:controller="com.android.car.developeroptions.nfc.NfcPreferenceController" 37 android:order="-7"/> 38 39 <com.android.settingslib.RestrictedPreference 40 android:fragment="com.android.car.developeroptions.nfc.AndroidBeam" 41 android:key="android_beam_settings" 42 android:title="@string/android_beam_settings_title" 43 settings:controller="com.android.car.developeroptions.nfc.AndroidBeamPreferenceController" 44 android:icon="@drawable/ic_android" 45 android:order="-6"/> 46 47 <SwitchPreference 48 android:key="nfc_secure_settings" 49 android:title="@string/nfc_secure_settings_title" 50 settings:controller="com.android.car.developeroptions.nfc.SecureNfcPreferenceController" 51 android:icon="@drawable/ic_nfc" 52 android:summary="@string/nfc_secure_toggle_summary" 53 android:order="-7"/> 54 55 <com.android.settingslib.RestrictedPreference 56 android:key="connected_device_printing" 57 android:title="@string/print_settings" 58 android:summary="@string/summary_placeholder" 59 android:icon="@*android:drawable/ic_settings_print" 60 android:fragment="com.android.car.developeroptions.print.PrintSettingsFragment" 61 android:order="-3" 62 settings:searchable="false"/> 63 64 <Preference 65 android:key="bt_received_files" 66 android:icon="@drawable/ic_folder_vd_theme_24" 67 android:title="@string/bluetooth_show_files_received_via_bluetooth"/> 68 69 <PreferenceCategory 70 android:key="dashboard_tile_placeholder" 71 android:order="-8"/> 72 73</PreferenceScreen> 74