Android 蓝牙设备类型判断代码介绍

Android 蓝牙设备类型判断

一、前言

Android 蓝牙设备有各种类型,比如蓝牙手机,蓝牙耳机,蓝牙手环,蓝牙鼠标键盘,蓝牙玩具,健康检测设备等等。

有些场景需要具体区分就需要进行判断了。一个是扫描到后图标显示设备类型,还是可能是具体处理的区别。

这些设备的类型,硬件设备本身其实是有定义的,
但是也不排除有些设备定义不正确,这些都是要我们开发者进行调试才清楚的。

二、蓝牙类型获取api

BluetoothDevice bluetoothDevice; //蓝牙设备对象,怎么获取后面接收
int type = device.getType(); //(1)简单类型
BluetoothClass bluetoothClass = device.getBluetoothClass();
int deviceClassType = bluetoothClass.getDeviceClass(); //(2)clss tyep
int deviceType = bluetoothClass.getMajorDeviceClass(); //(3)具体类型

getMajorDeviceClass 才是详细类型的数值。

其实把这几个type 都打印出来就能看到数值了。

三、各个蓝牙类型获取api详解

1、getType() 方法的类型

这个方法获取的是大致的类型。

具体类型的定义:

packages\modules\Bluetooth\framework\java\android\bluetooth\BluetoothDevice.java

/*** Bluetooth device type, Unknown*/public static final int DEVICE_TYPE_UNKNOWN = 0;/*** Bluetooth device type, Classic - BR/EDR devices,经典-BR/EDR设备*/public static final int DEVICE_TYPE_CLASSIC = 1;/*** Bluetooth device type, Low Energy - LE-only,低能耗-仅限LE*/public static final int DEVICE_TYPE_LE = 2;/*** Bluetooth device type, Dual Mode - BR/EDR/LE,双模式-BR/EDR/LE*/public static final int DEVICE_TYPE_DUAL = 3;

Android13 的蓝牙源码是在这个目录,旧的源码是在framework 目录下的。

比如手机设备的值为3,蓝牙耳机、蓝牙鼠标键盘值为1;
但是这个不能区分具体类型比较。所以getType() 一般不怎么使用。

2、getDeviceClass()方法的类型

这个类型没怎么用过,网上也没几个人用。
因为他定义的类型代码中并未进行分类,需要自己去蓝牙相关协议对比确认。

具体类型的定义:

packages\modules\Bluetooth\framework\java\android\bluetooth\BluetoothClass.java

    /*** Return the (major and minor) device class component of this* {@link BluetoothClass}.* <p>Values returned from this function can be compared with the* public constants in {@link BluetoothClass.Device} to determine which* device class is encoded in this Bluetooth class.** @return device class component*/public int getDeviceClass() {return (mClass & Device.BITMASK);}/*** Return the Bluetooth Class of Device (CoD) value including the* {@link BluetoothClass.Service}, {@link BluetoothClass.Device.Major} and* minor device fields.** <p>This value is an integer representation of Bluetooth CoD as in* Bluetooth specification.** @see <a href="Bluetooth CoD">https://www.bluetooth.com/specifications/assigned-numbers/baseband</a>** @hide*/@TestApi //这个是隐藏的,也是蓝牙设备类型的COD数值。public int getClassOfDevice() {return mClass;}

这里看不出啥,但是可以知道与蓝牙的COD数值相关,COD 具体类型的定义有兴趣的可以自己搜索。

下面的 getMajorDeviceClass 方法的值也是基于 蓝牙COD的。

从后面日志看 getDeviceClass 方法还更具体一些。

3、getMajorDeviceClass()

这个类型是在 DeviceClass 对象基础上的类型!

下面的代码类型定义都是在 BluetoothClass.java 这个类里面。

具体类型的定义:

	//获取具体类型public int getMajorDeviceClass() {return (mClass & Device.Major.BITMASK);}//内部类定义具体数据public static class Device {private static final int BITMASK = 0x1FFC;/*** Defines all major device class constants.* <p>See {@link BluetoothClass.Device} for minor classes.*/public static class Major {private static final int BITMASK = 0x1F00;public static final int MISC = 0x0000;public static final int COMPUTER = 0x0100;  //电脑设备public static final int PHONE = 0x0200; //手机设备public static final int NETWORKING = 0x0300; //网络设备 ,不清楚什么设备public static final int AUDIO_VIDEO = 0x0400;  //音频视频设备,蓝牙耳机音响public static final int PERIPHERAL = 0x0500; //外部设备,比如蓝牙鼠标键盘,蓝牙遥控器public static final int IMAGING = 0x0600;  //影像设备public static final int WEARABLE = 0x0700; //穿戴设备public static final int TOY = 0x0800;  //玩具设备public static final int HEALTH = 0x0900;  //健康检测设备public static final int UNCATEGORIZED = 0x1F00;}。。。}

注意这里是16进制的数值,日志打印中是十进制的数,需要转换后对比。

4、查看日志打印

	//监听各种蓝牙广播public void registerBroadcast(Context context) {DebugLog.debug("");final IntentFilter intentFilter = new IntentFilter();intentFilter.addAction(BluetoothDevice.ACTION_ACL_CONNECTED);intentFilter.addAction(BluetoothDevice.ACTION_ACL_DISCONNECT_REQUESTED);intentFilter.addAction(BluetoothDevice.ACTION_ACL_DISCONNECTED);intentFilter.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);intentFilter.addAction(BluetoothDevice.ACTION_PAIRING_REQUEST);intentFilter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED);intentFilter.addAction(BluetoothDevice.ACTION_ACL_CONNECTED);intentFilter.addAction(BluetoothDevice.ACTION_FOUND);context.registerReceiver(mReceiver, intentFilter);}//打印广播后的日志private final BroadcastReceiver mReceiver = new BroadcastReceiver() {@Overridepublic void onReceive(Context context, Intent intent) {final String action = intent.getAction();DebugLog.info("action = " + action);if (action == null) {DebugLog.error("action == null!");return;}BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);if (device == null) {DebugLog.error("device == null!");return;}int type = device.getType();int getDeviceClassType = device.getBluetoothClass().getDeviceClass();int getMajorDeviceClassType = device.getBluetoothClass().getMajorDeviceClass();DebugLog.info("device = " + device);DebugLog.info("getAlias = " + device.getAlias());DebugLog.info("type = " + type);DebugLog.info("getDeviceClassType = " + getDeviceClassType);DebugLog.info("getMajorDeviceClassType = " + getMajorDeviceClassType);}};

这里有蓝牙手机、耳机、音箱、鼠标、键盘、遥控器。
具体日志打印如下:


//普通手机
action = android.bluetooth.device.action.ACL_CONNECTED
device = F0:5C:77:F4:5E:65
getAlias = Pixel 4
type = 1(最开始打印这个)  --》 type = 3(后面打印这个)
getDeviceClassType = 524 // -->0x20c
getMajorDeviceClassType = 512 // -->0x200//蓝牙耳机
action = android.bluetooth.device.action.BOND_STATE_CHANGED//其他广播也打印,这边不一一写
device = 0D:3F:91:E2:FF:D3
getAlias = Y-12
type = 1
getDeviceClassType = 1028 // -->0x404
getMajorDeviceClassType = 1024  // -->0x400//蓝牙音箱,和耳机一样
action = android.bluetooth.device.action.BOND_STATE_CHANGED
device = 11:75:58:11:AC:7C
getAlias = A19
type = 1
getDeviceClassType = 1028
getMajorDeviceClassType = 1024//蓝牙鼠标
action = android.bluetooth.device.action.ACL_CONNECTED
device = 34:88:5D:AC:32:D1
getAlias = Bluetooth Mouse M336/M337/M535
type = 1
getDeviceClassType = 1408  // -->0x580
getMajorDeviceClassType = 1280  // -->0x500//蓝牙键盘
action = android.bluetooth.device.action.PAIRING_REQUEST
device = 34:88:5D:C1:4A:9D
getAlias = Keyboard K380
type = 1
getDeviceClassType = 1344  // -->0x540
getMajorDeviceClassType = 1280//蓝牙遥控器
action = android.bluetooth.device.action.BOND_STATE_CHANGED
device = 54:03:84:90:FB:72
getAlias = Horion control FB72
type = 2
getDeviceClassType = 1292// -->0x50c
getMajorDeviceClassType = 1280

Android系统代码蓝牙连接界面上也是使用的 getMajorDeviceClassType 返回的值,显示对应的图标。

上面也看到了 getDeviceClassType 可以具体区分蓝牙键盘和鼠标。
其他没遇见的类型可以自己打印这些数据查看一下信息即可。

类型判断参考:
https://www.codenong.com/js12b69fe68246/

从上面日志看 getMajorDeviceClassType 很多蓝牙设备会相同,但是 getDeviceClassType 不一样。
getDeviceClassType 类型还更详细!
看起来 getDeviceClassType 是在 getMajorDeviceClassType 的类型上加上具体类型值。

蓝牙类型 SOD相关值介绍:

https://blog.csdn.net/Atlas12345/article/details/104872833

四、蓝牙对象 BluetoothDevice 获取

1、广播监听


IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND); //发现设备广播
filter.addAction(BluetoothDevice.ACTION_DISCOVERY_FINISHED));//搜索结束广播
...private BroadcastReceiver receiver = new BroadcastReceiver(){@Overridepublic void onReceive(Context context, Intent intent){String action = intent.getAction();if(BluetoothDevice.ACTION_FOUND.equals(action)){//发现蓝牙设备BluetoothDevice device0 =intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);} else if (action.equals(BluetoothDevice.ACTION_BOND_STATE_CHANGED)) {//蓝牙绑定状态改变BluetoothDevice device1 =intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);}else if (action.equals(BluetoothDevice.ACTION_ACL_CONNECTED)) {//蓝牙耳机连接状态BluetoothDevice device3 =intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);}else if (action.equals(BluetoothDevice.ACTION_PAIRING_REQUEST)) {//蓝牙配对请求状态}...//还有其他蓝牙相关广播}
};

这里可以看到蓝牙相关的广播都是会有蓝牙对象回调的!

2、遍历所有扫描到的蓝牙设备

	// LocalBluetoothManager 是SettingsLib里面的类,估计要源码应用或者导入SettingsLib包的应用才能获取到这个类。LocalBluetoothManager mBluetoothManager = LocalBluetoothManager.getInstance(context, mOnInitCallback);//已连接/绑定设备列表Set<BluetoothDevice> bondedDevices = mBluetoothManager.getBluetoothAdapter().getBondedDevices();LogUtil.debug("bondedDevices size = " + bondedDevices.size());//未从已连接设备列表中找到断开的api,从所有的设备列表中进行判断连接状态后断开Collection<CachedBluetoothDevice> cachedDevices = mBluetoothManager.getCachedDeviceManager().getCachedDevicesCopy();LogUtil.debug("cachedDevices size = " + cachedDevices.size());

这个方法,普通应用是无法调用到的!

普通应用只能扫描发现蓝牙,把搜索的蓝牙放到列表中进行判断处理!

五、总结

1、蓝牙类型获取api

BluetoothDevice bluetoothDevice; //蓝牙设备对象
int type = device.getType(); //(1)功耗类型
BluetoothClass bluetoothClass = device.getBluetoothClass();
int deviceClassType = bluetoothClass.getDeviceClass(); //(2)更细的具体类型,系统代码中未定义相关数值
int deviceType = bluetoothClass.getMajorDeviceClass(); //(3)主要使用的具体类型,能简单区分类别

系统应用中也是使用 getMajorDeviceClass 进行判断的。

2、具体类型的定义:

BluetoothClass.java 这个类里面。//获取具体类型public int getMajorDeviceClass() {return (mClass & Device.Major.BITMASK);}//内部类定义具体数据public static class Device {private static final int BITMASK = 0x1FFC;/*** Defines all major device class constants.* <p>See {@link BluetoothClass.Device} for minor classes.*/public static class Major {private static final int BITMASK = 0x1F00;public static final int MISC = 0x0000;public static final int COMPUTER = 0x0100;  //电脑设备,对应10进制 256public static final int PHONE = 0x0200; //手机设备,512public static final int NETWORKING = 0x0300; //网络设备 ,不清楚什么设备,768public static final int AUDIO_VIDEO = 0x0400;  //音频视频设备,蓝牙耳机音响,1024public static final int PERIPHERAL = 0x0500; //外部设备,比如蓝牙鼠标键盘,蓝牙遥控器,1280public static final int IMAGING = 0x0600;  //影像设备,1536public static final int WEARABLE = 0x0700; //穿戴设备,1792public static final int TOY = 0x0800;  //玩具设备,2048public static final int HEALTH = 0x0900;  //健康检测设备,2304public static final int UNCATEGORIZED = 0x1F00;}。。。}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/101306.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【数据结构】二叉树的链式结构及实现

目录 1. 前置说明 2. 二叉树的遍历 2.1 前序、中序以及后序遍历 2.2 层序遍历 3. 节点个数及高度等 4. 二叉树的创建和销毁 1. 前置说明 在学习二叉树的基本操作前&#xff0c;需先要创建一棵二叉树&#xff0c;然后才能学习其相关的基本操作。由于现在大家对二叉树结构…

区块链跨链技术

区块链跨链技术 背景 近年来&#xff0c;随着区块链技术的不断发展&#xff0c;区块链的应用场景逐渐从最初的加密货币领域扩展到金融、物流、医疗、公共服务等各个领域。随着区块链的应用场景不断增多&#xff0c;区块链的“数据孤岛”问题日益突出&#xff0c;不同场景下的…

QT编程,QMainWindow、事件

目录 1、QMainWindow 2、事件 1、QMainWindow QMenuBar&#xff1a;菜单栏 QMenu: 菜单 QAction: 动作 QToolBar: 工具栏 QStatusBar: 状态栏 setWindowTitle("主窗口"); //: 前缀 文件名 setWindowIcon(QIcon(":/mw_images/10.png")); resize(640, 4…

生信学院|10月13日《SOLIDWORKS参数化应用——DriveWorksXpress》

课程主题&#xff1a;SOLIDWORKS参数化应用——DriveWorksXpress 课程时间&#xff1a;2023年10月13日 14:00-14:30 主讲人&#xff1a;温晓露 生信科技 售后服务工程师 1、DriveWorks的作用 2、用 DriveWorksXpress 自动化您的设计过程 3、Drive Works Xpress最佳做法 4…

软件测试概率性问题

软件测试中常见的一个问题就是概率性问题&#xff0c;概率性问题无论对软件测试人员还是对开发人员而言都是比较头疼的一个问题。这种概率性问题在测试中该如何处理呢? 首先&#xff0c;概率性问题也是问题&#xff0c;这种我们千万不能一笑而过&#xff0c;在这种情况下测试…

如何将jpg转化为png?

如何将jpg转化为png&#xff1f;可能有的小伙伴就会疑惑了&#xff0c;jpg和png都是图片常用的一种格式&#xff0c;为什么要进行格式的更改呢&#xff1f;那是因为PNG格式具有更好的图片质量和更少的失真。JPG&#xff08;或JPEG&#xff09;格式的图片通常是压缩过的&#xf…

Mall脚手架总结(二) —— SpringData操作Elasticsearch

前言 万字长文带你弄清楚SpringData中的Elasticsearch操作以及在脚手架里接口的结构关系&#xff01;经过前面鉴证授权的整合&#xff0c;荔枝开始熟悉项目的学习的方法了&#xff0c;虽然脚手架中的内容比较简单&#xff0c;但是把边角的知识点全部扫到还是比较花时间的尤其是…

C#和JS交互之Microsoft.ClearScript.V8(V8引擎)

之前测试了很多JS引擎&#xff0c;都只支持es5语法&#xff0c;不支持执行es6&#xff0c;测试了下微软的V8反正能跑通&#xff0c;应该是支持的。还得是微软呀。 如图&#xff1a;安装相关包&#xff1a; 这是参考的官方V8代码 using Microsoft.ClearScript.JavaScript; us…

当下测试行业中UI自动化面临的难点及如何解决

经常有人会问&#xff0c;什么样的项目才适合进行UI自动化测试呢&#xff1f;UI自动化测试相当于模拟手工测试&#xff0c;通过程序去操作页面上的控件。而在实际测试过程中&#xff0c;经常会遇到无法找到控件&#xff0c;或者因控件定义变更而带来的维护成本等问题。 哪些场…

jvm--执行引擎

文章目录 1. 执行引擎的工作流程2. 解释器、JIT及时编译器3. 热点代码及探测技术4. HotSpotVM 中 JIT 分类 执行引擎属于 JVM 的下层&#xff0c;里面包括解释器、及时编译器、垃圾回收器 JVM 的主要任务是负责 装载字节码到其内部&#xff0c;但字节码并不能够直接运行在操作…

Zookeeper分布式一致性协议ZAB源码剖析

文章目录 1、ZAB协议介绍2、消息广播 1、ZAB协议介绍 ZAB 协议全称&#xff1a;Zookeeper Atomic Broadcast&#xff08;Zookeeper 原子广播协议&#xff09;。 Zookeeper 是一个为分布式应用提供高效且可靠的分布式协调服务。在解决分布式一致性方面&#xff0c;Zookeeper 并…

Docker 的网络与数据管理

Docker 网络实现原理 Docker使用Linux桥接&#xff0c;在宿主机虚拟一个Docker容器网桥(docker0)&#xff0c;Docker启动一个容器时会根据Docker网桥的网段分配给容器一个IP地址&#xff0c;称为Container-IP&#xff0c;同时Docker网桥是每个容器的默认网关。因为在同一宿主机…

栈的模拟实现(Java)

目录 1、 栈的概念2、栈的使用3、栈的模拟实现 1、 栈的概念 栈&#xff1a;一种特殊的线性表&#xff0c;其只允许在固定的一端进行插入和删除元素操作。进行数据插入和删除操作的一端称为栈顶&#xff0c;另一端称为栈底。栈中的数据元素遵守后进先出LIFO&#xff08;Last I…

Linux 部署1Panel 现代化运维管理面板进行公网远程访问

&#x1f3ac; 鸽芷咕&#xff1a;个人主页 &#x1f525; 个人专栏:《速学数据结构》 《C语言进阶篇》 ⛺️生活的理想&#xff0c;就是为了理想的生活! 文章目录 前言1. Linux 安装1Panel2. 安装cpolar内网穿透2.1 使用一键脚本安装命令 2.2向系统添加服务2.3 启动cpolar服务…

爬虫Python

文章目录 基本数据类型bytes类型python数据类型转换&#xff08;必会&#xff01;&#xff01;&#xff01;&#xff09; python运算符&#xff08;必会&#xff01;&#xff01;&#xff01;&#xff09;python数字数学函数&#xff08;必会&#xff01;&#xff01;&#xff…

uni-app:实现view元素强制换行(解决长字符和英文字符不换行问题)

效果 换行前 换行后 核心代码 word-wrap: break-word; 或 word-break: break-all; 完整代码demo <template><view><view class"all_style"><view class"line1">aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</view>…

ubuntu离线编译安装cmake 3.22.5(could not fonud OPENSSL) and cmake-versinon查不到版本问题

1、首先去cmake官网下载压缩包,例如: cmake-3.22.5.tar.gz 2、拉到ubuntu进行解压: tar -zxcf cmake-3.22.5.tar.gz 3、cd 进入目录 cd cmake-3.22.5 4、执行configure可执行文件 ./configure 如果在编译过程中出现报错:Could NOT findOpenSSL,原因可能是缺少ssl库 按…

独享IP地址的层级划分和管理:打造稳定高效的网络架构

在网络架构设计中&#xff0c;独享地址的层级划分和管理是一项关键任务。它不仅能提供更好的网络性能和安全性&#xff0c;还能帮助企业实现更高效的资源管理。本文将为您详细介绍独享地址的层级划分和管理的重要性&#xff0c;并提供具体的方案和实际操作建议。 第一部分&…

高压放大器在纳米材料中的应用有哪些

高压放大器是一种重要的电子设备&#xff0c;可以用于增强输入信号的电压。在纳米材料领域&#xff0c;高压放大器也具有广泛的应用。下面西安安泰将介绍高压放大器在纳米材料中的应用&#xff0c;并探讨其可行性和潜在的研究方向。 纳米材料传感器&#xff1a;高压放大器在纳米…

10月11日,每日信息差

今天是2023年10月11日&#xff0c;以下是为您准备的16条信息差 第一、SHEIN在广州投资百亿的湾区供应链项目提速。该湾区供应链项目将建设集运营仓储、备货、拣货、分拨、发货等为一体的供应链仓储物流中心 第二、国内首条碳化法荧光级氧化镁中试生产线在青海建成。据了解&am…