'Android Bluetooth send Data(Text + Picture) to Multiple Devices at the Same time?

I research about Bluetooth in Android, but it can send data between two device, so It is possible to send data to Multiple devices in Android? if possible, please some hint, or some source code. Thanks;



Solution 1:[1]

No. Bluetooth is a point to point communication protocol: it does not support any "single device to multiple other device using the same connection" semantics.

If you want point to multipoint then use something like broadcast or multicast UDP.

Solution 2:[2]

True not exactly broadcast but multi-cast / piconet way

Take a look here http://en.wikipedia.org/wiki/Bluetooth#Communication_and_connection

and http://en.wikipedia.org/wiki/Piconet

Solution 3:[3]

Although it is a pretty old question, These days there is the BLE (Bluetooth low energy) technology, which is included in the Android framework which enables you to broadcast data between multiple devices.

Documentation

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Femi
Solution 2 Amol Ghotankar
Solution 3 M.vin