İşte bunu yapmanın biraz daha sağlam bir yolu, ayrıca enable()\disable()
yöntemlerin dönüş değerlerini de ele almak :
public static boolean setBluetooth(boolean enable) {
BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
boolean isEnabled = bluetoothAdapter.isEnabled();
if (enable && !isEnabled) {
return bluetoothAdapter.enable();
}
else if(!enable && isEnabled) {
return bluetoothAdapter.disable();
}
// No need to change bluetooth state
return true;
}
Ve manifest dosyanıza aşağıdaki izinleri ekleyin:
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
Ancak şu önemli noktaları unutmayın:
Bu, eşzamansız bir çağrıdır: hemen geri döner ve istemciler, ACTION_STATE_CHANGED'in sonraki bağdaştırıcı durumu değişikliklerinden haberdar edilmesini dinlemelidir. Bu çağrı true döndürürse, bağdaştırıcı durumu hemen STATE_OFF'tan STATE_TURNING_ON'a ve bir süre sonra STATE_OFF veya STATE_ON'a geçecektir. Bu çağrı yanlış dönerse, o zaman adaptörün açılmasını engelleyecek bir sorun vardı - örneğin Uçak modu veya adaptör zaten açık.
GÜNCELLEME:
Peki, bluetooth dinleyicisi nasıl uygulanır ?:
private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
final String action = intent.getAction();
if (action.equals(BluetoothAdapter.ACTION_STATE_CHANGED)) {
final int state = intent.getIntExtra(BluetoothAdapter.EXTRA_STATE,
BluetoothAdapter.ERROR);
switch (state) {
case BluetoothAdapter.STATE_OFF:
// Bluetooth has been turned off;
break;
case BluetoothAdapter.STATE_TURNING_OFF:
// Bluetooth is turning off;
break;
case BluetoothAdapter.STATE_ON:
// Bluetooth is on
break;
case BluetoothAdapter.STATE_TURNING_ON:
// Bluetooth is turning on
break;
}
}
}
};
Ve alıcı nasıl kaydedilir / kaydı nasıl iptal edilir? ( Activity
Sınıfınızda)
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// ...
// Register for broadcasts on BluetoothAdapter state change
IntentFilter filter = new IntentFilter(BluetoothAdapter.ACTION_STATE_CHANGED);
registerReceiver(mReceiver, filter);
}
@Override
public void onStop() {
super.onStop();
// ...
// Unregister broadcast listeners
unregisterReceiver(mReceiver);
}