Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 android 中创建一个应用程序,我想在其中提供将文件上传到 drop box 的功能。请建议这是上传文件所需的投递箱应用程序,或者我们可以在不安装应用程序的情况下上传
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。如果您的设备上有保管箱应用程序,它将起作用。
祝你好运!