Chatar Veer Suthar
Chatar Veer Suthar

Reputation: 15639

Connect Two Devices using bluetooth Android?

I want to connect two devices using bluetooth programming in android, please guide me and I do request you to not refer to Android Documentation, it is really very poor written, so just explain in your own words

Upvotes: 0

Views: 5406

Answers (1)

Justin Shield
Justin Shield

Reputation: 2380

Bluetooth Chat Application

I have found that the sample applications fill in a lot of the gaps in the documentation, and is generally my first source of inspiration when investigating an android feature.

Edit

If you've downloaded the SDK these sample apps are usually bundled with the SDK. For me this app is found under.

  • \android-sdk-windows\samples\android-7\BluetoothChat

Update

It lists any paired devices and devices detected in the area after discovery. When a device is chosen by the user, the MAC address of the device is sent back to the parent Activity in the result Intent.

Seems pretty straight forward, what part are you having difficulty with?

Upvotes: 3

Related Questions