안드로이드 블루투스 (classic bl) #5. 블루트스 연결 끊기

나고수·2022년 6월 26일
0

Android

목록 보기
85/109
post-thumbnail
 fun Context.disconnectBondedDevice(){
        Const.blSocket?.let {
            MyBluetoothService(BluetoothUtil.handler).ConnectedThread(it).cancel() //소켓 연결 해제
            Const.blDevice!!::class.java.getMethod("removeBond").invoke(Const.blDevice!!) // 연결된 device 연결 해제
        }
    }
 fun cancel() {
            if (mmSocket.isConnected) {
                try {
                    mmSocket.close() //소켓 close
                } catch (e: IOException) {
                    Log.e(TAG, "Could not close the connect socket", e)
                }
            }
        }
profile
되고싶다

0개의 댓글

관련 채용 정보