Android从其他应用程序启动Google云端硬盘应用程序而非上传文件

时间:2013-06-06 14:04:44

标签: android-intent google-drive-api

我尝试通过手动启动Google驱动器(安装在设备上)从我的Android应用程序上传文件。我尝试使用Intent.createChooser发送它,并且它可以正常上传文件附件。但我需要上传特定意图的文件(例如Dropbox,仅限Google云端硬盘)。所以我更改了代码并尝试按以下方式将文件上传到Google云端硬盘,但没有成功,只有Google云端硬盘应用在设备上打开,没有上传文件:

PackageManager pm = this.getPackageManager();
Intent intent = pm.getLaunchIntentForPackage("com.google.android.apps.docs");
intent.setType("application/pdf");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://sdcard/sdcard0/test.pdf"));
intent.putExtra(Intent.EXTRA_SUBJECT, "attach a file test");
intent.addCategory(Intent.ACTION_ATTACH_DATA);
startActivity(intent);

我们可以通过手动打开意图上传PDF文件吗?

1 个答案:

答案 0 :(得分:14)

我在研究后得到了执行以下代码的解决方案:

import android.support.v4.app.ShareCompat;

Uri pdfUri = Uri.parse("file://sdcard/sdcard0/test.pdf");                
Intent shareIntent = ShareCompat.IntentBuilder.from(this)
                                     .setText("Share PDF doc")
                                         .setType("application/pdf")
                                         .setStream(pdfUri )
                                         .getIntent()
                                 .setPackage("com.google.android.apps.docs");
startActivity(shareIntent);

同样,我们可以使用其他共享意图,并且几个意图的相应包名称如下:

  • com.dropbox.android = Dropbox
  • com.android.bluetooth =蓝牙
  • com.android.email =电子邮件
  • com.google.android.gm = Gmail
  • com.microsoft.skydrive = Skydrive
  • com.google.android.apps.docs = Googledrive

对于Gmail共享,我们需要使用以下类型的代码:

Uri zipUri = Uri.parse("file://sdcard/sdcard0/test.zip");  
String[] emailArr = {"test@gmail.com"};              
Intent shareIntent = ShareCompat.IntentBuilder.from(this)
                                  .setText("Share ZIP doc")
                                  .setType("application/zip")
                                  .setEmailTo(emailArr)
                                  .setStream(zipUri)
                                  .setSubject("Share zip doc")
                                  .setText("Sent with email app.")
                                  .getIntent()
                           .setPackage("com.google.android.gm");
startActivity(shareIntent);