如何以编程方式使用 Android 中的蓝牙将图像文件从一台设备发送到另一台设备。我可以正确发送文本文件,但尝试发送图像文件时显示错误。
示例代码在这里:
ContentValues values = new ContentValues();
values.put(BluetoothShare.URI, url);
values.put(BluetoothShare.DESTINATION, deviceAddress);
values.put(BluetoothShare.DIRECTION, BluetoothShare.DIRECTION_OUTBOUND);
Long ts = System.currentTimeMillis();
values.put(BluetoothShare.TIMESTAMP, ts);
getContentResolver().insert(BluetoothShare.CONTENT_URI, values);
这里url
指的是图片的路径。