jb를 실행하는 뿌리 티브이 삼성 갤럭시 넥서스 전화를 사용하고 있으며 어떤 이유로 블루투스 연결 서비스에서 브로드 캐스트 인 텐트를받지 못하고 있습니다. 아래에서 내 리시버 매니페스트와 브로드 캐스트 리시버 코드를 찾을 수 있습니다. 모든 팁이나 아이디어는 인정 될 것입니다.Android 브로드 캐스트 수신기가 bluetooth.android.bluetooth.BluetoothDevice.ACTION_ACL_CONNECTED을 (를) 수신하지 못했습니다.
감사
여기 여기 여기 리시버public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
//This is looking for the Wifi Connectivity Changes
if(action.equals("android.net.conn.CONNECTIVITY_CHANGE")){
Log.d(TAG,"received: Wifi Connection Change");
}
//This is looking Bluetooth connection disconnect
else if(action.equals("android.bluetooth.BluetoothDevice.ACTION_ACL_DISCONNECTED") ||
action.equals("android.bluetooth.BluetoothDevice.ACTION_ACL_DISCONNECTED_REQUESTED")){
Log.d(TAG,"Received: Bluetooth Disconnected");
}
//This is looking for Bluetooth connection established
else if(action.equals("android.bluetooth.BluetoothDevice.ACTION_ACL_CONNECTED")){
Log.d(TAG,"Received: Bluetooth Connected");
}
}
pre-JB에서 동일한 앱을 사용해 보셨습니까? 다른 말로 표현하면, JB가 문제이거나 위의 코드입니까? – Tom