Android Bluetooth 使用总结

前言

本文主要讲解经典蓝牙和BLE(低功耗蓝牙)的使用流程

一.获取蓝牙适配器

BluetoothAdapter 为蓝牙适配器,所有对蓝牙的操作都是通过它完成的.

BluetoothManager bluetoothManager =(BluetoothManager)getSystemService(Context.BLUETOOTH_SERVICE);
BluetoothAdapter mAdapter = bluetoothManager.getAdapter();

或者

BluetoothAdapter mAdapter = BluetoothAdapter.getDefaultAdapter();

以上两种实际一样.

二.开启蓝牙

友好界面的开启,在onActivityResult中获取开启结果

if (!mAdapter.isEnabled()){//先判断是否已开启
     Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
     startActivityForResult(intent,REQUEST_CODE);
}

简单粗暴的开启,当然这个也是异步开启的.

if (!mAdapter.isEnabled()){//先判断是否已开启
   mAdapter.enable();
}

由于上面是该方式为异步开启,如果想监听则要注册广播,如下

//注册广播
private void registerBluetoothReceiver() {
    IntentFilter filter = new IntentFilter();
    filter.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);//蓝牙状态改变的广播
    filter.addAction(BluetoothDevice.ACTION_FOUND);//找到设备的广播
    filter.addAction(BluetoothAdapter.ACTION_DISCOVERY_FINISHED);//搜索完成的广播
    filter.addAction(BluetoothAdapter.ACTION_DISCOVERY_STARTED);//开始扫描的广播
    filter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED);//状态改变
    registerReceiver(mReceive, intentFilter);
}
//注销广播
private void unregisterBluetoothReceiver() {
    if (mReceive != null) {
        unregisterReceiver(mReceive);
        mReceive = null;
    }
}
private BroadcastReceiver mReceive = new BroadcastReceiver() {

    @Override
    public void onReceive(Context context, Intent intent) {
        String action = intent.getAction();
         if (action == null) {
             return;
         }
         switch (action) {
             case BluetoothAdapter.ACTION_STATE_CHANGED:
                int state = intent.getIntExtra(BluetoothAdapter.EXTRA_STATE, -1);
                if(BluetoothAdapter.STATE_OFF == state) {
                    //蓝牙关闭
                }else if(BluetoothAdapter.STATE_ON == state) {
                    //蓝牙开启,开始扫描蓝牙
                }
                 break;
             case BluetoothDevice.ACTION_ACL_CONNECTED:
                 break;
             case BluetoothDevice.ACTION_BOND_STATE_CHANGED:
                //绑定状态返回
                 break;
             case BluetoothDevice.ACTION_FOUND:
                //扫描到的设备
                BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
                break;

         }
    }
};

三.扫描蓝牙

金典蓝牙和BLE蓝牙扫描方试上有区别了.

1.经典蓝牙扫描

经典蓝牙获取到的设备需要到上面注册的广播中获取.

if (mAdapter.isDiscovering()){
    mAdapter.cancelDiscovery();
}
mAdapter.startDiscovery();

2.BLE蓝牙扫描

BLE扫描到的蓝牙直接回调得到设备

public void startScanDevice() {
    BluetoothLeScanner bluetoothLeScanner = mAdapter.getBluetoothLeScanner();
    bluetoothLeScanner.startScan(mLocalScanCallback);
}

ScanCallback mLocalScanCallback = new ScanCallback() {
     @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
     @Override
     public void onScanResult(int callbackType, ScanResult result) {
        BluetoothDevice device = result.getDevice();
         //扫描到的设备
     }

     @Override
     public void onScanFailed(int errorCode) {
         
     }
 };

四.连接蓝牙

获取扫描到的BluetoothDevice(蓝牙设备)后即可连接.

1.经典蓝牙

配对

该方法为异步调用,返回true为正在绑定,同样需要在上面注册的广播中获取结果

boolean bond = device.createBond();
连接

客户端
连接操作为耗时过程,应该到子线程中进行,代码中的uuid可以理解为http中的端口号,这是一个唯一标识.

if (mAdapter.isDiscovering()) {
    mAdapter.cancelDiscovery();
}
ParcelUuid parcelUuid = device.getUuids()[0];
BluetoothSocket mBluetoothSocket = device.createRfcommSocketToServiceRecord(parcelUuid.getUuid());
if (!mBluetoothSocket.isConnected()) {
    mBluetoothSocket.connect();
}

服务端

/**
 * 开启服务端
 */
public void startBluetoothService() {
 
    while (true) {
        try {
            BluetoothServerSocket bluetoothServerSocket = mAdapter.listenUsingRfcommWithServiceRecord("zcx", UUID.fromString("00001101-0000-1000-8000-00805F9B34FB"));
            BluetoothSocket bluetoothSocket = bluetoothServerSocket.accept();
            if (bluetoothSocket != null) {
                bluetoothServerSocket .close();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

2.BLE蓝牙

//连接蓝牙
bluetoothGatt = device.connectGatt(getApplicationContext(), false, new BluetoothGattCallback() {
                        @ThreadChange
                        @Override
                        public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
                            //发现服务
                            bluetoothGatt.discoverServices();
                            if (newState == BluetoothProfile.STATE_CONNECTED) {
                            } else if (newState == BluetoothProfile.STATE_DISCONNECTED) {
                                
                            } else if (newState == BluetoothProfile.STATE_CONNECTING) {
                                
                            } else if (newState == BluetoothProfile.STATE_DISCONNECTING) {
                                
                            }
                        }

                        @Override
                        public void onServicesDiscovered(BluetoothGatt gatt, int status) {
                            super.onServicesDiscovered(gatt, status);
                            BluetoothGattService service = bluetoothGatt.getService(UUID.fromString(SERVICE_UUID));
                            BluetoothGattCharacteristic characteristic = service.getCharacteristic(UUID.fromString(Characteristic_uuid));
                            //设置接收通知
                            bluetoothGatt.setCharacteristicNotification(characteristic, true);
                            //00002902-0000-1000-8000-00805f9b34fb为系统接受通知自带的UUID
                            BluetoothGattDescriptor dsc = characteristic.getDescriptor(UUID.fromString("00002902-0000-1000-8000-00805f9b34fb"));
                            dsc.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
                            //设置BluetoothGattDescriptor 使蓝牙设备发送通知信号时回调onCharacteristicChanged方法
                            boolean success = bluetoothGatt.writeDescriptor(dsc);
                            Log.d(TAG, "writing enabledescriptor:" + success);
                        }

                        @Override
                        public void onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
                            
                        }

                        @Override
                        public void onCharacteristicWrite(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
                            super.onCharacteristicWrite(gatt, characteristic, status);
                            
                        }

                        @Override
                        public void onCharacteristicChanged(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic) {
                            //接收到的通知
                        }
                    });

                    break;

            }

四.通讯

1.经典蓝牙

//接收消息,需要用个子线程
public  void  receiveMessage(){
    if (bluetoothSocket == null){
        return;
    }
    try {
        InputStream inputStream = bluetoothSocket.getInputStream();
      
        BufferedReader bff = new BufferedReader(new InputStreamReader(inputStream));
        String message;
        while (true) {
                while ((message= bff.readLine()) != null) {
                    //获取到的数据
                }
            }
        }
    } catch (IOException e) {
        e.printStackTrace();
    }
 
}


//发送文本消息
public static void sendMessage(String message) {
    if (bluetoothSocket == null || TextUtils.isEmpty(message)){
        return;
    } 
    try {
        message += "\r\n";
        OutputStream outputStream = bluetoothSocket.getOutputStream();
        outputStream.write(message.getBytes("utf-8"));
        outputStream.flush();
    } catch (IOException e) {
        e.printStackTrace();
    }

2.BLE蓝牙

ble接收消息在连接时的onCharacteristicChanged方法中可以接收到,这里需要发送的方法

//发送文本消息
public boolean sendMessage(String message) {
     if (bluetoothGatt == null) return false;
     BluetoothGattCharacteristic gc = bluetoothGatt.getService(UUID.fromString(SERVICE_UUID)).getCharacteristic(UUID.fromString(Characteristic_uuid));
     gc.setValue(message.getBytes());
     bluetoothGatt.writeCharacteristic(gc);
     return true;
}

android蓝牙到这里就结束了,可以愉快的使用蓝牙了

总结

这里总结一下这两种蓝牙区别吧
金典蓝牙: 3.0版本以下的蓝牙,功耗高、传输数据量大、传输距离只有10米。
BLE(低功耗)蓝牙 4.0及以上版本的蓝牙,低功耗、数据量小、距离50米左右。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,923评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,154评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,775评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,960评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,976评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,972评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,893评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,709评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,159评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,400评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,552评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,265评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,876评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,528评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,701评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,552评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,451评论 2 352

推荐阅读更多精彩内容