Android examples for android.bluetooth:Bluetooth On Off
Turn off Bluetooth
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*/ } } }