标签: bluetooth
我引用了此Link的代码。
他们提到只有Android 3.0及更高版本支持BluetoothHeadset和BluetoothProfile类。
BluetoothHeadset
BluetoothProfile
那么我们怎样才能使用或不使用这些类来检测BT耳机?
答案 0 :(得分:2)
您可以使用类android.bluetooth.BluetoothDevice检测耳机,特别是getBluetoothClass(),它会返回BluetoothClass个对象。然后,您可以调用getDeviceClass()并将其与BluetoothClass.Device中定义的常量进行比较。
android.bluetooth.BluetoothDevice
getBluetoothClass()
BluetoothClass
getDeviceClass()
BluetoothClass.Device
这些可从API级别5(Android 2.0)开始提供。