Android开发之蓝牙(Bluetooth)操作(一)--扫描已经配对的蓝牙设备

时间:2024-08-13 10:33:50

版权声明:本文为博主原创文章,未经博主允许不得转载。

一. 什么是蓝牙(Bluetooth)?

1.1  BuleTooth是目前使用最广泛的无线通信协议

1.2  主要针对短距离设备通讯(10m)

1.3  常用于连接耳机,鼠标和移动通讯设备等.

二. 与蓝牙相关的API

2.1 BluetoothAdapter:

代表了本地的蓝牙适配器

2.2 BluetoothDevice

代表了一个远程的Bluetooth设备

三. 扫描已经配对的蓝牙设备(1)

注:必须部署在真实手机上,模拟器无法实现

首先需要在AndroidManifest.xml 声明蓝牙权限

<user-permission Android:name="android.permission.BLUETOOTH" />

配对蓝牙需要手动操作:

1. 打开设置--> 无线网络 --> 蓝牙 勾选开启

2. 打开蓝牙设置  扫描周围已经开启的蓝牙设备(可以与自己的笔记本电脑进行配对),点击进行配对

电脑上会弹出提示窗口: 添加设备

显示计算与设备之间的配对码,要求确认是否配对

手机上也会显示类似的提示.

四. 扫描已经配对的蓝牙设备(2)

4.1 获得BluetoothAdapter对象

4.2 判断当前移动设备中是否拥有蓝牙

4.3 判断当前移动设备中蓝牙是否已经打开

4.4 得到所有已经配对的蓝牙设备对象

实现代码如下:

MainActivity:

  1. import java.util.Iterator;
  2. import java.util.Set;
  3. import android.app.Activity;
  4. import android.bluetooth.BluetoothAdapter;
  5. import android.bluetooth.BluetoothDevice;
  6. import android.content.Intent;
  7. import android.os.Bundle;
  8. import android.view.View;
  9. import android.view.View.OnClickListener;
  10. import android.widget.Button;
  11. public class MainActivity extends Activity {
  12. private Button button = null;
  13. /** Called when the activity is first created. */
  14. @Override
  15. public void onCreate(Bundle savedInstanceState) {
  16. super.onCreate(savedInstanceState);
  17. setContentView(R.layout.main);
  18. button = (Button)findViewById(R.id.buttonId);
  19. button.setOnClickListener(new OnClickListener(){
  20. @Override
  21. public void onClick(View v) {
  22. //获得BluetoothAdapter对象,该API是android 2.0开始支持的
  23. BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter();
  24. //adapter不等于null,说明本机有蓝牙设备
  25. if(adapter != null){
  26. System.out.println("本机有蓝牙设备!");
  27. //如果蓝牙设备未开启
  28. if(!adapter.isEnabled()){
  29. Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
  30. //请求开启蓝牙设备
  31. startActivity(intent);
  32. }
  33. //获得已配对的远程蓝牙设备的集合
  34. Set<BluetoothDevice> devices = adapter.getBondedDevices();
  35. if(devices.size()>0){
  36. for(Iterator<BluetoothDevice> it = devices.iterator();it.hasNext();){
  37. BluetoothDevice device = (BluetoothDevice)it.next();
  38. //打印出远程蓝牙设备的物理地址
  39. System.out.println(device.getAddress());
  40. }
  41. }else{
  42. System.out.println("还没有已配对的远程蓝牙设备!");
  43. }
  44. }else{
  45. System.out.println("本机没有蓝牙设备!");
  46. }
  47. }
  48. });
  49. }
  50. }