Java Code Examples for android.bluetooth.BluetoothAdapter#STATE_DISCONNECTED
The following examples show how to use
android.bluetooth.BluetoothAdapter#STATE_DISCONNECTED .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ConnectionMonitorImpl.java From neatle with MIT License | 6 votes |
@Override public void onConnectionStateChanged(Connection connection, int newState) { if (connectionStateListener != null) { connectionStateListener.onConnectionStateChanged(connection, newState); } if (newState == BluetoothAdapter.STATE_DISCONNECTED) { NeatleLogger.d("Will try to reconnect to " + connection.getDevice().getAddress() + " after " + (reconnectTimeout / 1000) + " seconds"); handler.removeCallbacks(reconnectRunnable); handler.postDelayed(reconnectRunnable, reconnectTimeout); reconnectTimeout = Math.min(reconnectTimeout * 2, MAX_RECONNECT_TIMEOUT); } else if (newState == BluetoothAdapter.STATE_CONNECTED) { reconnectTimeout = DEFAULT_RECONNECT_TIMEOUT; } }
Example 2
Source File: AppRTCBluetoothManager.java From imsdk-android with MIT License | 5 votes |
/** Converts BluetoothAdapter states into local string representations. */ private String stateToString(int state) { switch (state) { case BluetoothAdapter.STATE_DISCONNECTED: return "DISCONNECTED"; case BluetoothAdapter.STATE_CONNECTED: return "CONNECTED"; case BluetoothAdapter.STATE_CONNECTING: return "CONNECTING"; case BluetoothAdapter.STATE_DISCONNECTING: return "DISCONNECTING"; case BluetoothAdapter.STATE_OFF: return "OFF"; case BluetoothAdapter.STATE_ON: return "ON"; case BluetoothAdapter.STATE_TURNING_OFF: // Indicates the local Bluetooth adapter is turning off. Local clients should immediately // attempt graceful disconnection of any remote links. return "TURNING_OFF"; case BluetoothAdapter.STATE_TURNING_ON: // Indicates the local Bluetooth adapter is turning on. However local clients should wait // for STATE_ON before attempting to use the adapter. return "TURNING_ON"; default: return "INVALID"; } }
Example 3
Source File: AppRTCBluetoothManager.java From flutter-incall-manager with ISC License | 5 votes |
/** Converts BluetoothAdapter states into local string representations. */ private String stateToString(int state) { switch (state) { case BluetoothAdapter.STATE_DISCONNECTED: return "DISCONNECTED"; case BluetoothAdapter.STATE_CONNECTED: return "CONNECTED"; case BluetoothAdapter.STATE_CONNECTING: return "CONNECTING"; case BluetoothAdapter.STATE_DISCONNECTING: return "DISCONNECTING"; case BluetoothAdapter.STATE_OFF: return "OFF"; case BluetoothAdapter.STATE_ON: return "ON"; case BluetoothAdapter.STATE_TURNING_OFF: // Indicates the local Bluetooth adapter is turning off. Local clients should immediately // attempt graceful disconnection of any remote links. return "TURNING_OFF"; case BluetoothAdapter.STATE_TURNING_ON: // Indicates the local Bluetooth adapter is turning on. However local clients should wait // for STATE_ON before attempting to use the adapter. return "TURNING_ON"; default: return "INVALID"; } }
Example 4
Source File: BluetoothManager.java From tap-android-sdk with Apache License 2.0 | 5 votes |
@Override public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) { /* * status - * * 8 (0x08) - connection timeout / device went out of range * 19 (0x13) - connection terminated by peer user * 22 (0x16) - connection terminated by local host * * For more information, please refer to: * https://android.googlesource.com/platform/external/bluetooth/bluedroid/+/refs/tags/android-cts-5.1_r28/stack/include/gatt_api.h */ BluetoothDevice device = gatt.getDevice(); log("Connection state changed - " + device.getName() + " " + device.getAddress() + " status: " + status + " newState: " + newState); if (ignoredDevices.contains(device.getAddress())) { return; } if (status == 22) { // will get here after calling 'removeBond' handleDeviceUnpaired(gatt); return; } switch (newState) { case BluetoothAdapter.STATE_CONNECTED: handleDeviceConnection(gatt); break; case BluetoothAdapter.STATE_DISCONNECTED: handleDeviceDisconnection(gatt); break; } }
Example 5
Source File: AssistantService.java From AssistantBySDK with Apache License 2.0 | 5 votes |
@Override public void onReceive(Context context, Intent intent) { Log.i(TAG, "blueConnectStateBroadcastReceiver action>>>>" + intent.getAction()); if (intent.getAction() == null) return; if (intent.getAction().equals(BluetoothAdapter.ACTION_CONNECTION_STATE_CHANGED)) { int blueconState = intent.getIntExtra(BluetoothAdapter.EXTRA_CONNECTION_STATE, 0); switch (blueconState) { case BluetoothAdapter.STATE_CONNECTED: Log.i(TAG, "blueConnectStateBroadcastReceiver>>>>STATE_CONNECTED"); voiceMediator.setBlueHeadSet(true); isBlueToothHeadsetConnected(); break; case BluetoothAdapter.STATE_CONNECTING: Log.i(TAG, "blueConnectStateBroadcastReceiver>>>>STATE_CONNECTING"); break; case BluetoothAdapter.STATE_DISCONNECTED: Log.i(TAG, "blueConnectStateBroadcastReceiver>>>>STATE_DISCONNECTED"); voiceMediator.setBlueHeadSet(false); voiceMediator.setSuportA2DP(false); AudioManager mAudioManager_ = (AudioManager) getSystemService(Context.AUDIO_SERVICE); mAudioManager_.setBluetoothScoOn(false); mAudioManager_.stopBluetoothSco(); break; case BluetoothAdapter.STATE_DISCONNECTING: Log.i(TAG, "blueConnectStateBroadcastReceiver>>>>STATE_DISCONNECTING"); voiceMediator.setSuportA2DP(false); break; default: break; } } }
Example 6
Source File: AppRTCBluetoothManager.java From react-native-incall-manager with ISC License | 5 votes |
/** Converts BluetoothAdapter states into local string representations. */ private String stateToString(int state) { switch (state) { case BluetoothAdapter.STATE_DISCONNECTED: return "DISCONNECTED"; case BluetoothAdapter.STATE_CONNECTED: return "CONNECTED"; case BluetoothAdapter.STATE_CONNECTING: return "CONNECTING"; case BluetoothAdapter.STATE_DISCONNECTING: return "DISCONNECTING"; case BluetoothAdapter.STATE_OFF: return "OFF"; case BluetoothAdapter.STATE_ON: return "ON"; case BluetoothAdapter.STATE_TURNING_OFF: // Indicates the local Bluetooth adapter is turning off. Local clients should immediately // attempt graceful disconnection of any remote links. return "TURNING_OFF"; case BluetoothAdapter.STATE_TURNING_ON: // Indicates the local Bluetooth adapter is turning on. However local clients should wait // for STATE_ON before attempting to use the adapter. return "TURNING_ON"; default: return "INVALID"; } }
Example 7
Source File: AppRTCBluetoothManager.java From Pix-Art-Messenger with GNU General Public License v3.0 | 5 votes |
/** * Converts BluetoothAdapter states into local string representations. */ private String stateToString(int state) { switch (state) { case BluetoothAdapter.STATE_DISCONNECTED: return "DISCONNECTED"; case BluetoothAdapter.STATE_CONNECTED: return "CONNECTED"; case BluetoothAdapter.STATE_CONNECTING: return "CONNECTING"; case BluetoothAdapter.STATE_DISCONNECTING: return "DISCONNECTING"; case BluetoothAdapter.STATE_OFF: return "OFF"; case BluetoothAdapter.STATE_ON: return "ON"; case BluetoothAdapter.STATE_TURNING_OFF: // Indicates the local Bluetooth adapter is turning off. Local clients should immediately // attempt graceful disconnection of any remote links. return "TURNING_OFF"; case BluetoothAdapter.STATE_TURNING_ON: // Indicates the local Bluetooth adapter is turning on. However local clients should wait // for STATE_ON before attempting to use the adapter. return "TURNING_ON"; default: return "INVALID"; } }
Example 8
Source File: AppRTCBluetoothManager.java From Conversations with GNU General Public License v3.0 | 5 votes |
/** * Converts BluetoothAdapter states into local string representations. */ private String stateToString(int state) { switch (state) { case BluetoothAdapter.STATE_DISCONNECTED: return "DISCONNECTED"; case BluetoothAdapter.STATE_CONNECTED: return "CONNECTED"; case BluetoothAdapter.STATE_CONNECTING: return "CONNECTING"; case BluetoothAdapter.STATE_DISCONNECTING: return "DISCONNECTING"; case BluetoothAdapter.STATE_OFF: return "OFF"; case BluetoothAdapter.STATE_ON: return "ON"; case BluetoothAdapter.STATE_TURNING_OFF: // Indicates the local Bluetooth adapter is turning off. Local clients should immediately // attempt graceful disconnection of any remote links. return "TURNING_OFF"; case BluetoothAdapter.STATE_TURNING_ON: // Indicates the local Bluetooth adapter is turning on. However local clients should wait // for STATE_ON before attempting to use the adapter. return "TURNING_ON"; default: return "INVALID"; } }