我想通过程序启用/禁用蓝牙。我有以下代码。

BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
if (!mBluetoothAdapter.isEnabled()) {
        Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
        startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);

但是此代码在SDK 1.5中不起作用。我该如何运作?

最佳答案

Android BluetoothAdapter文档说它自API级别5起就已经可用。API Level 5是Android 2.0。

您可以尝试使用蓝牙API的反向端口(尚未亲自尝试过):http://code.google.com/p/backport-android-bluetooth/

09-26 12:09