- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有什么方法可以获取配对的蓝牙设备的配置文件。我已经能够配对蓝牙设备并且它已配对为 INPUT_DEVICE在 android 中,我得到了 BluetoothDevice 的对象,其中包含地址和其他内容,但是如果 android 存储了它的配置文件,那么我们可以从那里获取配对的设备配置文件,比如 HEADSET 或 A2DP 或 INPUT_DEVICE 或其他。
我已经尝试过service listener的方法
private BluetoothProfile.ServiceListener listener=new BluetoothProfile.ServiceListener() {
@Override
public void onServiceDisconnected(int profile) {
// TODO Auto-generated method stub
//if(profile==BluetoothProfile.HEADSET)
headSet=null;
}
@Override
public void onServiceConnected(int profile, BluetoothProfile proxy) {
// TODO Auto-generated method stub
switch(profile){
case BluetoothProfile.HEADSET:
Log.e("found","headset");
break;
case BluetoothProfile.A2DP:
Log.e("found","a2dp");
activity.onA2DPListenr((BluetoothA2dp) proxy);
break;
case BluetoothProfile.HEALTH:
Log.e("found","HEALTH");
break;
}
}
}
};
现在每当我调用它时
activity.getAdapter().getProfileProxy(activity, listener,
BluetoothProfile.HEADSET);
它会转到耳机日志,当我打电话时
activity.getAdapter().getProfileProxy(activity, listener,
BluetoothProfile.HEALTH);
它会转到健康日志,并显示配置文件已连接到同一设备。但同一设备可以同时成为两者。
我的要求也与此完全不同,我不想尝试不同的场景来找出 android 已经包含的配对设备的实际配置文件,他们有什么方法可以获取实际配置文件..?
最佳答案
可以通过以下方式找到与 BluetoothDevice 关联的蓝牙配置文件或服务
boolean hasLatestUuids=device.fetchUuidsWithSdp();
if(hasLatestUuids){
/*getUuids() return cached uuids so we need to make an sdp request to get refresh uuid associated with the device*/
ParcelUuid[] uu=device.getUuids();
for(ParcelUuid u:uu){
Log.e("found","uuid "+u.getUuid());
}
}
我们也可以通过反射发出请求:
Method m=null;
boolean hasLatestUuid=false;
try {
m=BluetoothDevice.class.getDeclaredMethod("fetchUuidsWithSdp", null);
m.setAccessible(true);
hasLatestUuid=(Boolean) m.invoke(device, null);
} catch (NoSuchMethodException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalArgumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InvocationTargetException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
ParcelUuid[] uuids=null;
if(hasLatestUuid){
try {
m=device.getClass().getDeclaredMethod("getUuids", null);
m.setAccessible(true);
uuids=(ParcelUuid[]) m.invoke(device, null);
} catch (NoSuchMethodException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalArgumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InvocationTargetException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if(uuids!=null){
for(ParcelUuid u:uuids){
Log.e("found","uuid "+u.describeContents());
Log.e("found","uuid "+u.getUuid());
}
}
此处日志返回远程设备支持的 uuid 列表,例如在我的情况下我需要连接到两个不同的设备,第一个具有 HID 配置文件,第二个具有串行端口或套接字,所以
对于串行端口设备,我得到 uuid:00001101-0000-1000-8000-00805f9b34fb
对于 HumanInterface,我得到 uuid:00001124-0000-1000-8000-00805f9b34fb
它有 bas_uuid:00000000-0000-1000-8000-00805F9B34FB和串行端口:0x1101和 HID:0x1124
所有这些信息都可以找到http://bluetooth-pentest.narod.ru/doc/assigned_numbers_-_service_discovery.html
我们也可以通过 BluetoothClass 检查这个,即
public static final int PROFILE_HEADSET = 0;
/** @hide */
public static final int PROFILE_A2DP = 1;
/** @hide */
public static final int PROFILE_OPP = 2;
/** @hide */
public static final int PROFILE_HID = 3;
/** @hide */
public static final int PROFILE_PANU = 4;
/** @hide */
public static final int PROFILE_NAP = 5;
BluetoothClass myClass=device.getBluetoothClass();
int val=myClass.getDeviceClass();
Log.e("found","class "+val);
Log.e("found","class "+(val|bitmask));
Log.e("found","PROFILE_HEADSET:"+doesclassMatch(PROFILE_HEADSET,myClass));
Log.e("found","PROFILE_A2DP:"+doesclassMatch(PROFILE_A2DP,myClass));
Log.e("found","PROFILE_OPP:"+doesclassMatch(PROFILE_OPP,myClass));
Log.e("found","PROFILE_HID:"+doesclassMatch(PROFILE_HID,myClass));
Log.e("found","PROFILE_PANU:"+doesclassMatch(PROFILE_PANU,myClass));
Log.e("found","PROFILE_NAP:"+doesclassMatch(PROFILE_NAP,myClass));
private boolean doesclassMatch(int profile,BluetoothClass myClass){
Method m=null;
try {
m=BluetoothClass.class.getMethod("doesClassMatch", new Class[]{int.class});
m.setAccessible(true);
return (Boolean) m.invoke(myClass, profile);
} catch (NoSuchMethodException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalArgumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InvocationTargetException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return false;
}
它将针对设备包含的特定类型或服务返回 true。
但根据 BluetoothClass 规范:
BluetoothClass is useful as a hint to roughly describe a device
* (for example to show an icon in the UI), but does not reliably describe which
* Bluetooth profiles or services are actually supported by a device. Accurate
* service discovery is done through SDP requests, which are automatically
* performed when creating an RFCOMM socket with
* BluetoothDevice#createRfcommSocketToServiceRecord} and
* BluetoothAdapter#listenUsingRfcommWithServiceRecord
关于android - 已配对安卓设备的蓝牙配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29891389/
是否可以识别我周围启用了蓝牙的设备?我不需要与他们交流,只知道他们就在那里。 我正在寻找类似于 android 的 BluetouthDevice.startDiscovery() 的东西 这样的事情
蓝牙的 HTTP 代理服务是否允许我将 BLE 设备视为 HTTP 服务器,例如以便与设备对话的应用可以向其发送 GET/POST/PUT 请求? 或者这个操作是相反的方向,BLE 设备通过应用程序向
我正在与BlueZ库一起在Linux下管理蓝牙堆栈。我正在尝试打开一个套接字,该套接字应与已知UUID的特定服务连接。我已成功尝试按照以下示例在服务器和客户端之间打开套接字: http://peopl
有谁知道蓝牙设备如何获取范围内可发现设备的设备 ID? 理想情况下,我正在寻找涉及蓝牙协议(protocol)最小实现的最简单解决方案。 一个起点会很好,我只是想创建一个设备,它可以以最小的功耗存储附
蓝牙双模设备是否可以在与 BT LE 设备配对的同时被经典蓝牙发现?如果设备不能同时运行这两种模式也没关系,但我真的应该在这些模式之间切换芯片吗?我只是在 BT 4 Core 规范中找不到答案 最佳答
我目前正在开展一个涉及乐高 Mindstorms 套件的项目。砖 block 是 NXT,我对蓝牙 ping 速率很好奇。 我对其进行了 100 次 ping 测试,得到了一些有趣的结果。延迟似乎分为
我正在启动一个通过蓝牙进行无线 MIDI 连接的项目。据我所知,BT规范中没有定义MIDI配置文件。 我想知道你们中的一些人是否有兴趣分享有关通过 BT 使用 MIDI 的最佳方式的经验,特别是关于延
Closed. This question is off-topic。它当前不接受答案。
我想通过蓝牙将我的摩托罗拉机器人连接到 OBDKey。我以 BluetoothChat 为例连接蓝牙,使用 KWP 作为协议(protocol) 然后我写byte[]命令 command[0]=ra
几个月前,我用 C# 编写了一个 Messenger 程序,可以让许多客户端连接到服务器并进行聊天。 现在,我想为 android 编写相同的程序。在阅读了 Android Developers 中的
我目前正在制作一个与蓝牙相关的 Android 实用程序,我需要更改我的设备的设备发现范围.. 我有办法这样做吗?我目前正在考虑使用 TPL 来执行此操作,但我不太确定.. Android 应用程序或
我正在为两个玩家构建 tic tac,需要蓝牙连接来交换一些数据,我可以启用蓝牙,启用发现能力,但我不知道“BluetoothServerSocket”和客户端“BluetoothSocket”中的问
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visi
我正在 Microsoft visual studio express 2012,C++ 中制作一个程序,以便与具有此 mac 地址的设备建立简单的蓝牙连接:“00:12:08:24:15:50”,
我正在为 python import bluetooth 使用蓝牙模块,我相信它是 PyBluez 包。我能够从 bluetooth.BluetoothSocket 类进行连接、发送和接收,但我的应用
我正在为 python import bluetooth 使用蓝牙模块,我相信它是 PyBluez 包。我能够从 bluetooth.BluetoothSocket 类进行连接、发送和接收,但我的应用
我尝试通过以下命令来做到这一点: ./configure -developer-build -opensource -nomake examples -nomake tests make module
我有一个服务,理论上可以在没有关联 Activity 的情况下工作(因为“服务”适用于 Android 平台)。 此服务使用蓝牙,特别是注册一个具有给定名称的蓝牙服务来监听通信。当然,它必须启用蓝牙才
谁知道是否可以制作一个应用程序通过蓝牙模拟触摸屏鼠标或触控板? 如何让 PC(或 MAC)知道我是鼠标设备? 问候, 胡安 最佳答案 您应该看看蓝牙 HID 规范。这可能是可能的,具体取决于您用来模拟
我的问题很简单。我想知道什么是我的应用程序的最佳实践,以便它可以“防打瞌睡”。随着 Android N 将在更多情况下应用 Doze,这变得更加相关。 阅读时Doze Documentation有一部
我是一名优秀的程序员,十分优秀!