is Bluetooth Enabled - Android Bluetooth

Android examples for Bluetooth:Turn On bluetooth

Description

is Bluetooth Enabled

Demo Code


//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
}

Related Tutorials