最佳答案
我想通过程序启用/禁用蓝牙。我有以下代码。
BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
if (!mBluetoothAdapter.isEnabled()) {
Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
但是这个代码在 SDK 1.5中不能工作。我怎样才能让它工作呢?