Добавьте это разрешение в свой Manifest.xml
<uses-permission android:name="android.permission.BLUETOOTH" />
и создайте метод, который будет проверять, подключен ли Bluetooth
private boolean isBluetootConnected() {
BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
return mBluetoothAdapter != null && mBluetoothAdapter.isEnabled()
&& mBluetoothAdapter.getProfileConnectionState(BluetoothHeadset.HEADSET) == BluetoothHeadset.STATE_CONNECTED;
}