Android examples for android.bluetooth:Bluetooth
does Device Has Bluetooth
import android.bluetooth.BluetoothAdapter; public class Main { static boolean doesDeviceHasBluetooth() { return getBluetoothAdapter() != null; }//from ww w.ja va 2 s. c o m static BluetoothAdapter getBluetoothAdapter() { return BluetoothAdapter.getDefaultAdapter(); } }