Android 蓝牙设备的查找和连接

1.权限
使用蓝牙设备需要先在Manifest中开放权限,位置如下。

  1. <manifest ...>       
  2.     <application ...> 
  3.            ... 
  4.     </application> 
  5.  
  6.     // 使用蓝牙设备的权限 
  7.     <uses-permission android:name="android.permission.BLUETOOTH" /> 
  8.     // 管理蓝牙设备的权限 
  9.     <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> 
  10. </manifest> 
<manifest ...>	  
	<application ...>
           ...
	</application>

	// 使用蓝牙设备的权限
	<uses-permission android:name="android.permission.BLUETOOTH" />
    // 管理蓝牙设备的权限
    <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
</manifest>

2.打开蓝牙
获得蓝牙适配器(android.bluetooth.BluetoothAdapter),检查该设备是否支持蓝牙,如果支持,就打开蓝牙。
  1. // 检查设备是否支持蓝牙 
  2. adapter = BluetoothAdapter.getDefaultAdapter(); 
  3. if (adapter == null
  4.     // 设备不支持蓝牙 
  5. // 打开蓝牙 
  6. if (!adapter.isEnabled()) 
  7.     Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE); 
  8.     // 设置蓝牙可见性,最多300秒 
  9.     intent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300); 
  10.     context.startActivity(intent); 
// 检查设备是否支持蓝牙
adapter = BluetoothAdapter.getDefaultAdapter();
if (adapter == null)
{
    // 设备不支持蓝牙
}
// 打开蓝牙
if (!adapter.isEnabled())
{
    Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
    // 设置蓝牙可见性,最多300秒
    intent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300);
    context.startActivity(intent);
}

3.获取已配对的蓝牙设备(android.bluetooth.BluetoothDevice)
首次连接某蓝牙设备需要先配对,一旦配对成功,该设备的信息会被保存,以后连接时无需再配对,所以已配对的设备不一定是能连接的。
  1. BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); 
  2. Set<BluetoothDevice> devices = adapter.getBondedDevices(); 
  3. for(int i=0; i<devices.size(); i++) 
  4.     BluetoothDevice device = (BluetoothDevice) devices.iterator().next(); 
  5.     System.out.println(device.getName()); 
BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter();
Set<BluetoothDevice> devices = adapter.getBondedDevices();
for(int i=0; i<devices.size(); i++)
{
	BluetoothDevice device = (BluetoothDevice) devices.iterator().next();
	System.out.println(device.getName());
}

4.搜索周围的蓝牙设备
适配器搜索蓝牙设备后将结果以广播形式传出去,所以需要自定义一个继承广播的类,在onReceive方法中获得并处理蓝牙设备的搜索结果。
  1. // 设置广播信息过滤 
  2. IntentFilter intentFilter = new IntentFilter(); 
  3. intentFilter.addAction(BluetoothDevice.ACTION_FOUND); 
  4. intentFilter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED); 
  5. intentFilter.addAction(BluetoothAdapter.ACTION_SCAN_MODE_CHANGED); 
  6. intentFilter.addAction(BluetoothAdapter.ACTION_STATE_CHANGED); 
  7. // 注册广播接收器,接收并处理搜索结果 
  8. context.registerReceiver(receiver, intentFilter); 
  9. // 寻找蓝牙设备,android会将查找到的设备以广播形式发出去 
  10. adapter.startDiscovery(); 
// 设置广播信息过滤
IntentFilter intentFilter = new IntentFilter();
intentFilter.addAction(BluetoothDevice.ACTION_FOUND);
intentFilter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED);
intentFilter.addAction(BluetoothAdapter.ACTION_SCAN_MODE_CHANGED);
intentFilter.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);
// 注册广播接收器,接收并处理搜索结果
context.registerReceiver(receiver, intentFilter);
// 寻找蓝牙设备,android会将查找到的设备以广播形式发出去
adapter.startDiscovery();

自定义广播类
  1. private BroadcastReceiver receiver = new BroadcastReceiver() { 
  2.    @Override 
  3.    public void onReceive(Context context, Intent intent) { 
  4.         String action = intent.getAction(); 
  5.         if (BluetoothDevice.ACTION_FOUND.equals(action)) { 
  6.             BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE); 
  7.             System.out.println(device.getName()); 
  8.         } 
  9.    } 
private BroadcastReceiver receiver = new BroadcastReceiver() {
   @Override
   public void onReceive(Context context, Intent intent) {
	    String action = intent.getAction();
	    if (BluetoothDevice.ACTION_FOUND.equals(action)) {
		    BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
		    System.out.println(device.getName());
        }
   }
}

5.蓝牙设备的配对和状态监视
  1. private BroadcastReceiver receiver = new BroadcastReceiver() { 
  2.     @Override 
  3.     public void onReceive(Context context, Intent intent) { 
  4.         String action = intent.getAction(); 
  5.         if (BluetoothDevice.ACTION_FOUND.equals(action)) { 
  6.             // 获取查找到的蓝牙设备 
  7.             BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE); 
  8.             System.out.println(device.getName()); 
  9.             // 如果查找到的设备符合要连接的设备,处理 
  10.             if (device.getName().equalsIgnoreCase(name)) { 
  11.                 // 搜索蓝牙设备的过程占用资源比较多,一旦找到需要连接的设备后需要及时关闭搜索 
  12.                 adapter.cancelDiscovery(); 
  13.                 // 获取蓝牙设备的连接状态 
  14.                 connectState = device.getBondState(); 
  15.                 switch (connectState) { 
  16.                     // 未配对 
  17.                     case BluetoothDevice.BOND_NONE: 
  18.                         // 配对 
  19.                         try
  20.                             Method createBondMethod = BluetoothDevice.class.getMethod("createBond"); 
  21.                             createBondMethod.invoke(device); 
  22.                         } catch (Exception e) {  
  23.                             e.printStackTrace(); 
  24.                         } 
  25.                         break
  26.                     // 已配对 
  27.                     case BluetoothDevice.BOND_BONDED: 
  28.                         try
  29.                             // 连接 
  30.                             connect(device); 
  31.                         } catch (IOException e) { 
  32.                             e.printStackTrace(); 
  33.                         } 
  34.                         break
  35.                 } 
  36.             } 
  37.        } else if(BluetoothDevice.ACTION_BOND_STATE_CHANGED.equals(action)) { 
  38.             // 状态改变的广播 
  39.             BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE); 
  40.             if (device.getName().equalsIgnoreCase(name)) {  
  41.                 connectState = device.getBondState(); 
  42.                 switch (connectState) { 
  43.                     case BluetoothDevice.BOND_NONE: 
  44.                         break
  45.                     case BluetoothDevice.BOND_BONDING: 
  46.                         break
  47.                     case BluetoothDevice.BOND_BONDED: 
  48.                         try
  49.                             // 连接 
  50.                             connect(device); 
  51.                         } catch (IOException e) { 
  52.                             e.printStackTrace(); 
  53.                         } 
  54.                         break
  55.                 } 
  56.             } 
  57.         } 
  58.     } 
private BroadcastReceiver receiver = new BroadcastReceiver() {
	@Override
	public void onReceive(Context context, Intent intent) {
		String action = intent.getAction();
		if (BluetoothDevice.ACTION_FOUND.equals(action)) {
    		// 获取查找到的蓝牙设备
			BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
			System.out.println(device.getName());
			// 如果查找到的设备符合要连接的设备,处理
			if (device.getName().equalsIgnoreCase(name)) {
				// 搜索蓝牙设备的过程占用资源比较多,一旦找到需要连接的设备后需要及时关闭搜索
			    adapter.cancelDiscovery();
			    // 获取蓝牙设备的连接状态
			    connectState = device.getBondState();
			    switch (connectState) {
   			        // 未配对
			    	case BluetoothDevice.BOND_NONE:
					    // 配对
					    try {
						    Method createBondMethod = BluetoothDevice.class.getMethod("createBond");
						    createBondMethod.invoke(device);
					    } catch (Exception e) { 
						    e.printStackTrace();
					    }
					    break;
				    // 已配对
				    case BluetoothDevice.BOND_BONDED:
					    try {
					    	// 连接
					    	connect(device);
					    } catch (IOException e) {
					    	e.printStackTrace();
					    }
					    break;
			    }
		    }
       } else if(BluetoothDevice.ACTION_BOND_STATE_CHANGED.equals(action)) {
			// 状态改变的广播
			BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
			if (device.getName().equalsIgnoreCase(name)) { 
				connectState = device.getBondState();
				switch (connectState) {
					case BluetoothDevice.BOND_NONE:
						break;
					case BluetoothDevice.BOND_BONDING:
						break;
					case BluetoothDevice.BOND_BONDED:
					    try {
						    // 连接
                            connect(device);
                        } catch (IOException e) {
                            e.printStackTrace();
                        }
                        break;
                }
            }
        }
    }
}

6.蓝牙设备的连接
  1. private void connect(BluetoothDevice device) throws IOException { 
  2.     // 固定的UUID 
  3.     final String SPP_UUID = "00001101-0000-1000-8000-00805F9B34FB"
  4.     UUID uuid = UUID.fromString(SPP_UUID); 
  5.     BluetoothSocket socket = device.createRfcommSocketToServiceRecord(uuid); 
  6.     socket.connect(); 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值