1

我正在为android制作一个应用程序。我正在从“设置”连接设备,我想接收来自蓝牙的所有内容。
我没有像 BluetoothChat 示例中那样的套接字客户端连接,并且发送的设备必须是任何设备。
实际上,我必须接受我的应用程序中的任何文件,并向设备发送消息。
我试过 BluetoothShare.java,但没有运气:

ContentValues values = new ContentValues();
    String address= addressString;
    values.put(BluetoothShare.URI, Uri.fromFile(new File(path)).toString());
    values.put(BluetoothShare.DESTINATION, address);
    values.put(BluetoothShare.DIRECTION, BluetoothShare.DIRECTION_OUTBOUND);
    Long ts = System.currentTimeMillis();
    values.put(BluetoothShare.TIMESTAMP, ts);
    Uri contentUri = getContentResolver().insert(BluetoothShare.CONTENT_URI, values);
    grantUriPermission(BluetoothShare., contentUri, Intent.FLAG_GRANT_READ_URI_PERMISSION);

关于如何实施它的任何想法?

4

0 回答 0