Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a BlueTooth(BT) device (Master) which must be connected to the android device automatically, after BT device is turned on.
In my opinion it will be something like BT headset device connection to the android, i.e. while headset turned on - it's automatically initiates connection to android and connects to it. It's not acceptable to create and keep open socket for BT connections on android.

My question is it is possible to do that and how?

If there is some listener/service which run in background of android system and create some event/intent for incoming BT connection, and what is it, and how i can to get information/notification from it?

In addition it is interesting to know - how android knows that BT headset want to connect - if it receives message/packet or something else?

share|improve this question

1 Answer

up vote 0 down vote accepted

Ok, I resolved my problem, here the code:
AndroidManifest.xml:

<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />

And

<receiver
    android:enabled="true"
    android:name="com.package.name.ConnectionReceiver" >

    <intent-filter>
        <action android:name="android.bluetooth.device.action.ACL_CONNECTED"
            android:name="android.bluetooth.device.action.ACL_DISCONNECT" />
    </intent-filter>
</receiver>

also I had implemented a BroadcastReceiver subclass onReceive method which receivers and handles these actions.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.