Android examples for Bluetooth:Turn On bluetooth
is Bluetooth Enabled
//package com.java2s; import android.bluetooth.BluetoothAdapter; public class Main { public static boolean isBluetoothEnabled() { return BluetoothAdapter.getDefaultAdapter().isEnabled(); }//from ww w .ja v a2s . c om }