Java tutorial
//package com.java2s; import android.bluetooth.BluetoothAdapter; import android.util.Log; public class Main { public static void onBluetooth() { BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter(); if (!bluetoothAdapter.isEnabled()) { bluetoothAdapter.enable(); Log.i("Log", "Bluetooth is Enabled"); } } }