当前位置:   article > 正文

android蓝牙开发基础知识讲解,常见bluetooth蓝牙开发步骤

android蓝牙开发

首先在此引用一下百度百科里关于蓝牙的定义:

蓝牙技术是一种无线数据和语音通信开放的全球规范,它是基于低成本的近距离无线连接,为固定和移动设备建立通信环境的一种特殊的近距离无线技术连接。
《来自百度百科》

使用android原生开放的api来开发蓝牙应用,简单的可以总结为以下三步:

  • 打开蓝牙开关,让设备处于扫描模式,扫描附近可用的其它蓝牙设备。
  • 与找到的某一蓝牙建立连接关系。
  • 通过socket套接字与流操作交换数据,或者使用设备已支持的蓝牙协议来获取数据。

以上三个步骤就是常见的android蓝牙开发过程,在android车载方向开发中,车机一般作为蓝牙连接中的从端设备,手机作为对应的主端设备,两者之间按照一致对应的蓝牙协议来交互,以下是android车载方向常见的蓝牙协议:

  • Hfp (Hands-Free profile):免提通话协议,常用于和手机之间的蓝牙通话,通过该协议可以控制主机拨打电话
  • A2dp (Advanced Audio Distribution Profile):高质量音频传输协议,用于蓝牙音乐,基于该协议可以获取主机传输过来的音频流数据
  • Avrcp (Audio/Video Remote Control Profile):音频/视频远程控制协议,基于该协议可以让从端控制主端的媒体上下曲,播放暂停等功能
  • MAP (Message Access Profile):信息访问协议,基于该协议可以获取主机上的信息,电子邮件,类似读取手机短信
  • Pbap (Phone Book Access Profile):电话本访问协议,基于该协议可以获取主机上的通讯录跟通话记录

从端开发过程

在日常开发过程中,车机端一般作为从端来开发蓝牙应用,而手机端则作为蓝牙主端,android原生已经封装支持了常见的主从协议功能交互接口以便开发者调用。以下以Pbap协议为例,介绍车机端蓝牙应用的常用类以及使用过程,其它协议过程类似:

  1. 定义蓝牙功能权限

开发设计蓝牙相关功能的,需要在AndroidManifest.xml清单文件中定义好权限:

<uses-permission android:name="android.permission.BLUETOOTH_CONNECT"/>
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.BLUETOOTH_PRIVILEGED" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

如果应用不是系统级应用,还需要在代码中配置某些权限的动态申请,比如:

if (ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION)
        != PackageManager.PERMISSION_GRANTED) {
    ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.ACCESS_COARSE_LOCATION}, REQUEST_CODE);
}

@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
    super.onRequestPermissionsResult(requestCode, permissions, grantResults);
    if (requestCode == REQUEST_CODE){
        if (grantResults.length != 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
            Toast.makeText(this, "权限开启成功", Toast.LENGTH_LONG).show();
        } else {
            Toast.makeText(this, "权限开启失败", Toast.LENGTH_LONG).show();
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  1. 扫描附近蓝牙设备

在定义好相关的蓝牙开发权限后,接下从使用BluetoothAdapter 类进行蓝牙交互开始,BluetoothAdapter 类是任何跟蓝牙相关交互都会先涉及到的操作类,用来打开/关闭设备蓝牙开关;扫描附近蓝牙设备,获取已经配对过的设备列表。

要先连接到其它蓝牙设备,首先需要打开当前设备的蓝牙开关:

//获取蓝牙适配器
BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
//打开蓝牙
bluetoothAdapter.enable();
  • 1
  • 2
  • 3
  • 4

在扫描其他设备前,需要先注册一个监听蓝牙开关状态BluetoothAdapter.ACTION_STATE_CHANGED 的广播,确保当前蓝牙状态处于已开启状态再去调用startDiscovery(),扫描过程中,系统也会发出扫描开始BluetoothAdapter.ACTION_DISCOVERY_STARTED跟扫描结束BluetoothAdapter.ACTION_DISCOVERY_FINISHED两个广播。一旦扫描到附近的蓝牙设备,只需监听BluetoothAdapter.ACTION_FOUND广播并获取设备信息即可:

public void onReceive(Context context, Intent intent) {
    String action = intent.getAction();
    switch (action) {
        case BluetoothAdapter.ACTION_STATE_CHANGED:
            int state = intent.getIntExtra(BluetoothAdapter.EXTRA_STATE, -1);
            if(state = 1){
                //开启扫描
                bluetoothAdapter.startDiscovery();
            }
            break;
        ...

        case BluetoothDevice.ACTION_FOUND:
            //发现设备
            BluetoothDevice foundDevice = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
            break;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  1. 连接已扫描到的设备

BluetoothDevice即蓝牙设备类,通过此类获取对应蓝牙设备的信息,例如名称/地址/连接状态。为了连接到蓝牙设备并进行相关操作,则需要通过特定的BluetoothProfile协议类来发起连接,例如:

  • 通过BluetoothA2dpSink协议代理类连接设备,获取主端设备的音频流
  • 通过BluetoothHeadsetClient协议代理类连接设备,控制主端设备拨打电话
  • 通过BluetoothAvrcpController协议代理类连接设备,控制主端音乐播放器上下曲
  • 通过BluetoothPbapClient协议代理类连接设备,获取主端上的通讯录/通话记录数据
  • 通过BluetoothMapClient协议代理类连接设备,控制主端发送信息,以及获取主端上的信息数据

获取上述几个代理类的方式都差不多,即通过BluetoothAdapter类的 getProfileProxy()方法:

public boolean getProfileProxy(Context context, 
BluetoothProfile.ServiceListener listener,int profile);
  • 1
  • 2

第一个参数为当前上下文,第二个参数是协议的连接监听,第三个参数为需要连接的协议在BluetoothProfile 类当中的对应整型值,成功连接上的蓝牙协议代理类会通过第二个参数 BluetoothProfile.ServiceListener onServiceConnected()方法回调,回调方法的第二个参数 bluetoothProfile 就是本次连接上的蓝牙协议。

BluetoothProfile.ServiceListener serviceListener = new BluetoothProfile.ServiceListener() {
    @Override
    public void onServiceConnected(int profile, BluetoothProfile bluetoothProfile) {
        switch (profile) {
            case BluetoothProfile.HEADSET_CLIENT:
                //初始化代理类
                mHeadsetClient = (BluetoothHeadsetClient) bluetoothProfile;
                break;
            case BluetoothProfile.A2DP_SINK:
                mA2dpSink = (BluetoothA2dpSink) bluetoothProfile;
                break;
            case BluetoothProfile.PBAP_CLIENT:
                mPbapClient = (BluetoothPbapClient) 
                break;
        }
    }
};

//发起服务连接请求
bluetoothAdapter.getProfileProxy(context, serviceListener, BluetoothProfile.PBAP_CLIENT);
bluetoothAdapter.getProfileProxy(context, serviceListener, BluetoothProfile.A2DP_SINK);
bluetoothAdapter.getProfileProxy(context, serviceListener, BluetoothProfile.HEADSET_CLIENT);

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

如果要获取主机端的通讯录数据,就需要用到BluetoothPbapClient协议代理类,在初始化了BluetoothPbapClient之后,就可以向已扫描到的设备发起连接请求了,直接调用BluetoothPbapClientconnect(BluetoothDevice device)方法:

mPbapClient.connect(device);
  • 1

接着为了关注对应设备的连接情况,需要监听相关的广播,每个协议都有对应的连接状态变化广播,像BluetoothPbapClient协议的设备连接状态变化广播action值为BluetoothPbapClient.ACTION_CONNECTION_STATE_CHANGED,而BluetoothA2dpSink协议的action值是BluetoothA2dpSink.ACTION_CONNECTION_STATE_CHANGED,监听各自协议的设备连接状态变化广播,便可知道何时设备断开或连上哪些协议:

public void onReceive(Context context, Intent intent) {
    String action = intent.getAction();
    switch (action) {
        case BluetoothPbapClient.ACTION_CONNECTION_STATE_CHANGED:{
            int prevState = intent.getIntExtra(BluetoothProfile.EXTRA_PREVIOUS_STATE, 0);
            int nowstate = intent.getIntExtra(BluetoothProfile.EXTRA_STATE, 0);                    
            BluetoothDevice pbapDevice =intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
            if(prevState != BluetoothProfile.STATE_CONNECTED && nowstate == BluetoothProfile.STATE_CONNECTED){
                //已连接                        
            }else if(prevState != BluetoothProfile.STATE_DISCONNECTED && nowstate == BluetoothProfile.STATE_DISCONNECTED) {
                //已断开                        
            }
            break;
        }
        case BluetoothA2dpSink.ACTION_CONNECTION_STATE_CHANGED:{
            //同上
            break;
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

在连接上设备后,便可以调用协议代理类中的其它方法来与主端蓝牙设备交互,例如BluetoothHeadsetClientdial(BluetoothDevice device, String number)方法来拨打电话等。

以上就是本次博客的内容,感谢阅读!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/549249
推荐阅读
相关标签
  

闽ICP备14008679号