Android - Check if the bluetooth is supported and enabled
public boolean isBluetoothEnabled() { BluetoothAdapter bAdapter = BluetoothAdapter.getDefaultAdapter(); // Device does not support Bluetooth return bAdapter != null && bAdapter.isEnabled(); }
Comments
Post a Comment