Turn off Bluetooth - Android android.bluetooth

Android examples for android.bluetooth:Bluetooth On Off

Description

Turn off Bluetooth

Demo Code

import android.bluetooth.BluetoothAdapter;

public class Main {

  public static void offBluetooth() {
    BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
    if (bluetoothAdapter.isEnabled()) {
      bluetoothAdapter.disable();/*from w  ww. j ava2  s  . c o m*/
    }
  }

}

Related Tutorials