package com.RSen.Commandr.util; import android.bluetooth.BluetoothAdapter; /** * Created by Ryan on 6/29/2014. */ public class BluetoothUtil { public static boolean setBluetooth(boolean enable) { BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter(); boolean isEnabled = bluetoothAdapter.isEnabled(); if (enable && !isEnabled) { return bluetoothAdapter.enable(); } else if (!enable && isEnabled) { return bluetoothAdapter.disable(); } // No need to change bluetooth state return true; } }