如何在android中检测BT耳机

时间:2012-11-27 09:39:19

标签: bluetooth

我引用了此Link的代码。

他们提到只有Android 3.0及更高版本支持BluetoothHeadsetBluetoothProfile类。

那么我们怎样才能使用或不使用这些类来检测BT耳机?

1 个答案:

答案 0 :(得分:2)

您可以使用类android.bluetooth.BluetoothDevice检测耳机,特别是getBluetoothClass(),它会返回BluetoothClass个对象。然后,您可以调用getDeviceClass()并将其与BluetoothClass.Device中定义的常量进行比较。

这些可从API级别5(Android 2.0)开始提供。