2012-06-27 115 views
3

我需要在我的應用程序中關閉GSM網絡,但啓用藍牙。我知道如何改變飛機模式Toggle airplane mode in Android,但有沒有辦法讓藍牙(我知道他們都在無線電信號上工作),我認爲這可能在android 4上,因爲我看到一些應用程序,像「自動飛機「。在飛機模式下啓用藍牙

我試過下面的代碼沒有幫助:

Settings.System.putInt(context.getContentResolver(), 
       Settings.System.AIRPLANE_MODE_ON,1); 
Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED); 
intent.putExtra("state", 1); 
context.sendBroadcast(intent); 

BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter(); 
mBluetoothAdapter.enable(); 

感謝的, 大衛

回答

0

與BLUETOOTH_ADMIN許可 它的工作,但Bluethooth部分被禁止從手機設置,手機是其他devics可見。