android:手机之间蓝牙通信(三)

功能:蓝牙设备配对。

我使用的是工具类: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("蓝牙地址有问题");
		}
	}
});


          

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值