我已經編寫了一個應用程序來使用語音打開藍牙(只是調用了intent並使用了Action.request.enable方法)。它的工作很好..從應用程序中關閉藍牙
現在我想關閉藍牙。我嘗試使用bluetoothadapter.disable(),但整個應用程序崩潰。請幫我。這是我的代碼
BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
if(mBluetoothAdapter.isEnabled())
{
mBluetoothAdapter.disable();
}
能否請您粘貼logcat的。這樣我們可以分析並告訴你實際的問題。 –
可能是你想要的是http://stackoverflow.com/questions/3806536/how-to-enable-disable-bluetooth-programmatically-in-android –
你在清單文件中添加了這個權限 uses-permission> uses-permission> –
Pratik