功能:蓝牙设备配对。
我使用的是工具类:ClsUtils
下载地址:http://download.csdn.net/detail/bigtree_mfc/9600615
添加ClsUtils类,在监听器中继续添加代码。
// 设置选项点击的监听器 lv.setOnItemClickListener(new OnItemClickListener() { public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,long arg3) {// 重写选项被单击事件的处理方法 String[] al = add1.split(",");// add1为获取数据串,发现设备赋予 toast(al[arg2]); if (BluetoothAdapter.checkBluetoothAddress(al[arg2]))// 检查地址是否有效,正确返回true { // 配对 BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter(); BluetoothDevice device = bluetoothAdapter.getRemoteDevice(al[arg2]); if (device.getBondState() != BluetoothDevice.BOND_BONDED)// 判断给定地址下的device是否已经配对 { try { ClsUtils.setPin(device.getClass(), device, "0000"); ClsUtils.createBond(device.getClass(), device); } catch (Exception e) { e.printStackTrace(); toast("配对不成功"); } } else { toast("已配对,请直接连接"); } } else { toast("蓝牙地址有问题"); } } });