来自com.android.settings的蓝牙配对请求对话框不起作用

时间:2018-08-09 18:56:38

标签: android android-bluetooth

我正在尝试使用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');
})

0 个答案:

没有答案