마스터Q&A 안드로이드는 안드로이드 개발자들의 질문과 답변을 위한 지식 커뮤니티 사이트입니다. 안드로이드펍에서 운영하고 있습니다. [사용법, 운영진]

블루투스 연결에관한 질문입니다.!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

0 추천
블루투스 연결을 상태를 알아보고싶습니다.

상태가 해제될경우 이벤트를 발생시키고싶은데

방법이 어떻게 해야될가요?..
지미니v (1,080 포인트) 님이 2014년 6월 12일 질문

1개의 답변

0 추천

http://developer.android.com/reference/android/bluetooth/BluetoothAdapter.html

Android developer에서 해당 내용들이 있습니다.

int STATE_CONNECTED The profile is in connected state
int STATE_CONNECTING The profile is in connecting state
int STATE_DISCONNECTED The profile is in disconnected state
int STATE_DISCONNECTING The profile is in disconnecting state
int STATE_OFF Indicates the local Bluetooth adapter is off.
int STATE_ON Indicates the local Bluetooth adapter is on, and ready for use.
int STATE_TURNING_OFF Indicates the local Bluetooth adapter is turning off.
int STATE_TURNING_ON Indicates the local Bluetooth adapter is turning on.

위 내용으로 현재 Bluetooth의 state를 체크할 수 있습니다.

빅클라인 (4,520 포인트) 님이 2014년 6월 12일 답변
...