-1
可能重複:
How to enable/disable bluetooth programmatically in android如何打開藍牙編程
你好我米發展中的藍牙必須被編程打開一個應用程序可以請你告訴我,至於如何這樣做一步一步提前謝謝
可能重複:
How to enable/disable bluetooth programmatically in android如何打開藍牙編程
你好我米發展中的藍牙必須被編程打開一個應用程序可以請你告訴我,至於如何這樣做一步一步提前謝謝
此代碼適用於我。您可以試試這個
BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
if (!mBluetoothAdapter.isEnabled()) {
//Play with bluetooth
}else{
mBluetoothAdapter.disable();
}
您是否搜索過這個問題? –