Java tutorial
//package com.java2s; //License from project: Apache License import android.bluetooth.BluetoothAdapter; public class Main { /** * Checks if the bluetooth adapter is on and ready. */ public static boolean isBluetoothAvailable() { BluetoothAdapter tempBtAdapter = BluetoothAdapter.getDefaultAdapter(); return tempBtAdapter != null && tempBtAdapter.isEnabled(); } }