BluetoothGattCallback의 onBondStateChanged() 메서드는 장치와 원격 장치 간의 연결 상태 변경을 수신하는 데 사용됩니다. 장치가 결합되거나 결합되거나 끊어지는 경우와 같이 결합 상태가 변경될 때 호출됩니다. Thi
BluetoothGattCallback
의 <code>onBondStateChanged() 메서드는 결합, 결합 또는 파손과 같은 장치 및 원격 장치 변경.onBondStateChanged()
method in BluetoothGattCallback
is called when a bond state between the device and a remote device changes, such as bonded, bonding, or broken.
The syntax for onBondStateChanged()
method in BluetoothGattCallback
is:
<code class="java">public void onBondStateChanged(BluetoothDevice device, int bondState, int previousBondState)</code>
The following code sample shows you how to use the onBondStateChanged()
method:
<code class="java">private BluetoothGattCallback gattCallback = new BluetoothGattCallback() { @Override public void onBondStateChanged(BluetoothDevice device, int bondState, int previousBondState) { super.onBondStateChanged(device, bondState, previousBondState); String bondStateString = "Unknown bond state"; switch (bondState) { case BluetoothDevice.BOND_NONE: bondStateString = "BOND_NONE"; break; case BluetoothDevice.BOND_BONDING: bondStateString = "BOND_BONDING"; break; case BluetoothDevice.BOND_BONDED: bondStateString = "BOND_BONDED"; break; } String previousBondStateString = "Unknown bond state"; switch (previousBondState) { case BluetoothDevice.BOND_NONE: previousBondStateString = "BOND_NONE"; break; case BluetoothDevice.BOND_BONDING: previousBondStateString = "BOND_BONDING"; break; case BluetoothDevice.BOND_BONDED: previousBondStateString = "BOND_BONDED"; break; } Log.d(TAG, "onBondStateChanged() - Device: " + device + " Bond State: " + bondStateString + " Previous Bond State: " + previousBondStateString); } };</code>
The onBondStateChanged()
method in BluetoothGattCallback
의 <code>onBondStateChanged()
메서드 구문 BluetoothGattCallback은:🎜rrreee🎜다음 코드 샘플은 onBondStateChanged()
메서드를 사용하는 방법을 보여줍니다.🎜rrreee🎜안드로이드에서 BluetoothGattCallback.onBondStateChanged() 메서드의 목적은 무엇입니까?🎜 🎜 BluetoothGattCallback
의 <code>onBondStateChanged() 메서드는 장치와 원격 장치 간의 연결 상태 변경을 수신하는 데 사용됩니다. 이는 UI를 업데이트하거나 결합 상태에 따라 다른 작업을 수행하는 데 사용할 수 있습니다.🎜위 내용은 안드로이드 블루투스Gatt콜백 본드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!