1

我目前正在尝试通过蓝牙将文本文件从可穿戴设备(MOTO 360 Android 5.1.1)发送到我的手机(Moto X And​​roid 4.4.4),但是当我执行“onSendToPhone”方法时,我收到以下错误消息手表:

No application can handle this action

也许有人可以帮助我并找到解决方案;)

这是我用来从手表传输数据的代码:

public void onSendToPhone(View view)
    {
        //...
        // inside method
        // Check if bluetooth is supported
        BluetoothAdapter btAdapter = BluetoothAdapter.getDefaultAdapter();

        if (btAdapter == null) {
            // Device does not support Bluetooth
            // Inform user that we're done.
            Log.d("TAG","Bluetooth not found");
            return;
        }

        File sendFile= new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS) + "<filename>");

        // bring up Android chooser
        Intent intent = new Intent();
        intent.setAction(Intent.ACTION_SEND);
        intent.setType("text/plain");
        intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(sendFile));

                startActivity(intent);
        Log.d("TAG", "File is sent via Bluetooth");
    }
4

1 回答 1

1

不要BluetoothAdapter为此使用 a 。您必须使用 Play 服务来做到这一点。

如果您不想将文件发送到特定节点(设备),请查看ChannelAPI ;如果您想在所有设备之间同步二进制数据,请查看 DataLayer 。

于 2015-06-25T13:43:54.867 回答