Java tutorial
//package com.java2s; import android.bluetooth.BluetoothAdapter; public class Main { public static boolean enableBluetooth(boolean bEnable) { BluetoothAdapter btAdapter = BluetoothAdapter.getDefaultAdapter(); if (btAdapter == null) { // Bluetooth not supported return false; } return bEnable ? btAdapter.enable() : btAdapter.disable(); } }