1

How to get name and address of bluetooth device connecting with my device in android when start my activity ? Not get bluetooth device when found .

  • possible duplicate of [How to get bluetooth connected devices using BluetoothHeadset API](http://stackoverflow.com/questions/12509135/how-to-get-bluetooth-connected-devices-using-bluetoothheadset-api) – Mattias Backman Jun 18 '14 at 11:32

1 Answers1

0
ArrayAdapter.add(device.getName() + "\n" + device.getAddress());

If you have set up a bluetooth set and array then this will add it to a list view.

timedwalnut
  • 94
  • 1
  • 13