views:

38

answers:

1

Hi,

How can I list all connected bluetooth devices on android ?

thanks!

A: 

Please analyze this class from your Android SDK samples:

android-sdk-windows\samples\android-8\BluetoothChat\src\com\example\android\BluetoothChat\DeviceListActivity.java

Here you will find how to discover all connected (paired) Bluetooth devices.

Desiderio
hi Desiderio, well as I said I want to list the connected (active) devices, not the paired/trusted ones.
Shatazone
What about monitoring broadcasts ACTION_ACL_CONNECTED?
Desiderio