android 怎么判断连接了那个蓝牙耳机

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 怎么判断连接了那个蓝牙耳机相关的知识,希望对你有一定的参考价值。

ba = BluetoothAdapter.getDefaultAdapter();// int isBlueCon;//蓝牙适配器是否存在,即是否发生了错误 if (ba == null)// isBlueCon = -1; //error return -1; else if(ba.isEnabled()) int a2dp = ba.getProfileConnectionState(BluetoothProfile.A2DP); //可操控蓝牙设备,如带播放暂停功能的蓝牙耳机 int headset = ba.getProfileConnectionState(BluetoothProfile.HEADSET); //蓝牙头戴式耳机,支持语音输入输出 int health = ba.getProfileConnectionState(BluetoothProfile.HEALTH); //蓝牙穿戴式设备 参考技术A 有几种方式:
1、手机顶端会有蓝牙连接的标识; 2、手机设置-蓝牙-已配对区域中,您的蓝牙耳机配对名下方是否有显示“已连接”字样; 3、您看一下说明书,蓝牙耳机已连接后的指示灯有闪烁状态是不一样的。
参考技术B ba = BluetoothAdapter.getDefaultAdapter();// int isBlueCon;//蓝牙适配器是否存在,即是否发生了错误 if (ba == null)// isBlueCon = -1; //error return -1; else if(ba.isEnabled()) int a2dp = ba.getProfileConnectionState(BluetoothProfile.A2DP); //可操控蓝牙设备,如带播放暂停功能的蓝牙耳机 int headset = ba.getProfileConnectionState(BluetoothProfile.HEADSET); //蓝牙头戴式耳机,支持语音输入输出 int health = ba.getProfileConnectionState(BluetoothProfile.HEALTH); //蓝牙穿戴式设备

罗技k380蓝牙键盘怎么连接电脑

参考技术A

工具:win10电脑,罗技k380蓝牙键盘。

1、点击左下角的那个圆形的开始。

2、找到控制面板。

3、选择“硬件和声音”。

4、点击进入。

5、可以在电脑上搜索的到那个设备,然后点击链接。

6、即可连接成功。具体如下图所示:

    官方服务
      官方网站官方网站

以上是关于android 怎么判断连接了那个蓝牙耳机的主要内容,如果未能解决你的问题,请参考以下文章

android的蓝牙匹配连接

哪位清楚android判断蓝牙是不是连接

syu android蓝牙连接方法

android中怎样判断蓝牙是不是连接

Android蓝牙开发(二)经典蓝牙消息传输实现

android怎么来判断蓝牙开、关的状态?求代码