android蓝牙配对 自动联接,Android编程配对后自动连接蓝牙设备

在我的应用程序中,我需要配对蓝牙设备,并立即与之连接。

为了配对设备,我有以下功能:public boolean createBond(BluetoothDevice btDevice)

{

try {

Log.d("pairDevice()", "Start Pairing...");

Method m = btDevice.getClass().getMethod("createBond", (Class[]) null);

Boolean returnValue = (Boolean) m.invoke(btDevice, (Object[]) null);

Log.d("pairDevice()", "Pairing finished.");

return returnValue;

} catch (Exception e) {

Log.e("pairDevice()", e.getMessage());

}

return false;

}

我将其用作以下方式:Boolean isBonded = false;

try {

isBonded = createBond(bdDevice);

if(isBonded)

{

//Connect with device

}

}

它会向我显示配对设备的对话框并输入PIN。

问题是createBond函数总是返回true,它会一直等到我输入pin并与device配对,所以我没有正确使用:isBonded = createBond(bdDevice);

if(isBonded) {...}

所以问题是我如何与设备配对,以及当设备配对时如何连接到它?

P.D我的代码基于以下线程的第一个答案:Android+通过蓝牙编程对设备进行配对

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值