我正在Android中创建一个应用程序,我想在其中提供将文件上传到drop box的功能。请建议上传文件所需的投递箱应用程序,或者我们可以在没有安装应用程序的情况下上传
答案 0 :(得分:3)
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("file/*");
intent.putExtra(Intent.EXTRA_STREAM, Uri.parse(file.getPath()));
startActivity(Intent.createChooser(intent, "title");
使用Action Intent.ACTION_SEND发送意图。如果您的设备上有Dropbox应用程序,它将起作用。
祝你好运!