Merge "Add “Pair new device” on Bluetooth screen" into pi-dev

This commit is contained in:
TreeHugger Robot
2018-05-11 04:12:53 +00:00
committed by Android (Google) Code Review

View File

@@ -15,5 +15,19 @@
--> -->
<PreferenceScreen <PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:settings="http://schemas.android.com/apk/res-auto"
android:key="bluetooth_switchbar_screen" android:key="bluetooth_switchbar_screen"
android:title="@string/bluetooth_settings_title" /> android:title="@string/bluetooth_settings_title">
<com.android.settingslib.RestrictedPreference
android:key="bluetooth_screen_add_bt_devices"
android:title="@string/connected_device_add_device_title"
android:icon="@drawable/ic_menu_add"
android:summary="@string/connected_device_add_device_summary"
android:fragment="com.android.settings.bluetooth.BluetoothPairingDetail"
settings:allowDividerAbove="true"
settings:userRestriction="no_config_bluetooth"
settings:useAdminDisabledSummary="true"
settings:controller="com.android.settings.connecteddevice.AddDevicePreferenceController"/>
</PreferenceScreen>