Find The Devices in the Range by using Bluetooth programmatically.
Yes, you can do it using BroadcastReceiver , see below code, this will help you.
Initial search
mBluetoothAdapter.startDiscovery(); mReceiver = new BroadcastReceiver() { public void onReceive(Context context, Intent intent) { String action = intent.getAction();
Device search
if (BluetoothDevice.ACTION_FOUND.equals(action)) {
source share