有一个我通过蓝牙连接的耳机。应用程序接收者会收到通知,并在某个时间点进行操作
BluetoothDevice device = some object coresponding to the headset;
BluetoothClass bluetoothClass = device.getBluetoothClass();
之后我尝试了两件事:
bluetoothClass.hasService(BluetoothClass.Service.AUDIO)
和
bluetoothClass.getMajorDeviceClass()
bluetoothClass.getDeviceClass()
尽管可以通过youtube和手机应用程序使用相同的耳机用于音频目的,但是获取此设备的未分类类别或(hasService为false)。
如何处理此案例,任何示例或建议?