I research about Bluetooth in Android, but it can send data开发者_Python百科 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;
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.
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
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
精彩评论