Skip to content

Instantly share code, notes, and snippets.

@z4none
Created April 13, 2016 07:54
Show Gist options
  • Select an option

  • Save z4none/eae69f666fead94a2a05f2e77b2cba49 to your computer and use it in GitHub Desktop.

Select an option

Save z4none/eae69f666fead94a2a05f2e77b2cba49 to your computer and use it in GitHub Desktop.
android check bluetooth
BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
if (mBluetoothAdapter == null) {
// Device does not support Bluetooth
} else {
if (!mBluetoothAdapter.isEnabled()) {
// Bluetooth is not enable :)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment