我使用以下代码将文本文件发送到多个设备,
ContentValues values = new ContentValues();
String filePath1 =Environment.getExternalStorageDirectory().toString()+"/filename.txt";
values.put(BluetoothShare.URI, Uri.fromFile(newFile(filePath1)).toString());
values.put(BluetoothShare.DESTINATION,itDevices.getAddress()); values.put(BluetoothShare.DIRECTION, BluetoothShare.DIRECTION_OUTBOUND);
Long ts = System.currentTimeMillis();
values.put(BluetoothShare.TIMESTAMP, ts);
Uri contentUri = getContentResolver().insert(BluetoothShare.CONTENT_URI, values);
我想要相同类型的代码来发送消息。通过使用蓝牙 API 应用程序,当我首先尝试将消息发送到多个设备时,我连接到一个设备并将消息发送到该设备,然后再次断开连接并连接到另一个设备并以这种方式将消息发送到另一个设备。
是否可以在不断开通信的情况下将消息一一发送到多个设备?