android google Drive打开文件意图

时间:2014-10-12 06:53:46

标签: android google-drive-api

要求用户使用

从驱动器帐户中选择文件
           IntentSender intentSender = Drive.DriveApi   .newOpenFileActivityBuilder()
            .setMimeType(new String[] { "text/plain", "text/html" })
            .build(getGoogleApiClient());
    try {
        startIntentSenderForResult(
                intentSender, REQUEST_CODE_OPENER, null, 0, 0, 0);
    } catch (SendIntentException e) {
      Log.w(TAG, "Unable to send intent", e);
    } 
  1. 如何设置启动默认文件夹,例如我想在驱动器文件资源管理器打开时默认打开我的应用创建的文件夹?

1 个答案:

答案 0 :(得分:1)

在OpenFileActivityBuilder中使用setActivityStartFolder并为您的文件夹指定DriveId。