Android examples for android.bluetooth:Bluetooth On Off
start Bluetooth
import android.bluetooth.BluetoothAdapter; public class Main{ public static void startBluetooth() { BluetoothAdapter bluetoothAdapter = BluetoothAdapter .getDefaultAdapter();/*from www . ja v a2 s . c om*/ if (bluetoothAdapter != null) { if (!bluetoothAdapter.isEnabled()) { bluetoothAdapter.enable(); } } } }