Android打开谷歌驱动器与意图与指定的帐户

时间:2018-05-23 07:13:05

标签: android android-intent kotlin google-drive-android-api

我在Google云端硬盘中设置了多个帐户

account1@gmail.com account2@gmail.com

我希望通过意图打开带有account2@gmail.com的Google驱动器。 我可以使用以下功能打开Goog​​le云端硬盘应用。

fun startOpenGoogleDriveApp() {
    try {
        val intent = activity.packageManager.getLaunchIntentForPackage("com.google.android.apps.docs")
        startActivity(intent)
    }catch (e:Exception){
        e.printStackTrace()
    }
}

尝试使用intent.putExtra(Intent.EXTRA_USER,"account2@gmail.com"),但没有效果。

是否可以在意图附加内容中发送/指定帐户?非常感谢帮助。

1 个答案:

答案 0 :(得分:0)

我既不熟悉kotlin也不熟悉你正在使用的方法。我告诉你文档中提到的方式以及我熟悉的方式。

//Starts the sign-in process and initializes the Drive client.
    public void signIn() {
        GoogleSignInOptions signInOptions = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
                .requestScopes(Drive.SCOPE_FILE)
                .requestScopes(Drive.SCOPE_APPFOLDER)
                .build();
        GoogleSignInClient googleSignInClient = GoogleSignIn.getClient(this, signInOptions);
        startActivityForResult(googleSignInClient.getSignInIntent(), REQUEST_CODE_SIGN_IN);
    }

/**
 * Handles resolution callbacks.
 */
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if (requestCode == REQUEST_CODE_SIGN_IN) {
        if (resultCode == RESULT_OK) {
            initializeDriveClient(GoogleSignIn.getLastSignedInAccount(this));
        } else if (resultCode == RESULT_CANCELED) {
            Snackbar.make(findViewById(R.id.fab), R.string.sign_in_alert, Snackbar.LENGTH_SHORT).show();
        }else{
            Snackbar.make(findViewById(R.id.fab), R.string.sign_fail, Snackbar.LENGTH_SHORT).show();
        }
    }
}

/**
 * Continues the sign-in process, initializing the DriveResourceClient with the current
 * user's account.
 */
private void initializeDriveClient(GoogleSignInAccount signInAccount) {
    mDriveResourceClient = Drive.getDriveResourceClient(getApplicationContext(), signInAccount);
    mDriveResourceClient.getAppFolder().addOnSuccessListener(new OnSuccessListener<DriveFolder>() {
        @Override
        public void onSuccess(DriveFolder driveFolder) {
            onDriveClientReady();
            // CONTINUE THE TASK
        }
    });
}

abstract void onDriveClientReady();

现在,将其放在abstract活动类中,然后从主要活动类扩展它。

此代码异常安全,如果用户取消登录,您将能够终止从onActivityResult到达下一行代码。用户将是显示登录选项,选择一个帐户进行登录。如果RESULT_OK位于onActivityResult,则表示他已登录。

下一行代码将尝试异步初始化DriveClient(此处我只想appfolder,因此尝试了getAppFolderDrive.SCOPE_APPFOLDER,您将设置它你需要的。)成功初始化驱动器客户端后,您将从DriveFolder方法获得onSuccess

<强>依赖关系

implementation('com.google.api-client:google-api-client-android:1.23.0') {
    exclude group: 'org.apache.httpcomponents'
}
implementation('com.google.apis:google-api-services-drive:v3-rev114-1.23.0') {
    exclude group: 'org.apache.httpcomponents'
}
implementation 'com.google.android.gms:play-services-auth:15.0.1'
implementation 'com.google.android.gms:play-services-drive:15.0.1'

进一步的帮助和文档

注意 我总是备份我的应用程序代码。如果你想看到我正在使用的全班,请看: