-3

我正在 android 中创建一个应用程序,我想在其中提供将文件上传到 drop box 的功能。请建议这是上传文件所需的投递箱应用程序,或者我们可以在不安装应用程序的情况下上传

4

1 回答 1

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 发送 Intent。如果您的设备上有保管箱应用程序,它将起作用。

祝你好运!

于 2013-04-12T12:57:54.357 回答