我正在尝试使用BluetoothPairingDialog
中的com.android.settings
使用private void startBluetoothPairing(BluetoothDevice device) {
Intent pairingIntent = new Intent(BluetoothDevice.ACTION_PAIRING_REQUEST);
pairingIntent.putExtra(BluetoothDevice.EXTRA_NAME, device.getName());
pairingIntent.putExtra(BluetoothDevice.EXTRA_DEVICE, device);
pairingIntent.putExtra(BluetoothDevice.EXTRA_PAIRING_VARIANT,
BluetoothDevice.PAIRING_VARIANT_PASSKEY_CONFIRMATION);
startActivityForResult(pairingIntent, REQUEST_BT_PAIRING);
}
的蓝牙设备与该方法配对,但无法正常工作,我只在屏幕上看到“与%1 $ s成对”。对话框。我使用的是Android 6.0.1。我不知道是什么原因造成的,因为设备名称不为null或为空。
$('#myModal').on('shown.bs.modal', function(){
$('.note-toolbar-wrapper').removeAttr('style');
$('.note-toolbar').removeAttr('style');
})