Android-从Android文件选择器uri构造Google驱动器的URL

时间:2019-05-08 06:54:36

标签: android google-drive-api google-drive-android-api filepicker

我正在使用以下代码打开本地驱动器应用程序。

Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
intent.setType("application/*|text/*|audio/*");
intent.addCategory(Intent.CATEGORY_OPENABLE);
startActivityForResult(
                Intent.createChooser(intent, "Select a File to Upload"),
                SELECT_DOCS);

当用户从Google驱动器中选择文件时,我需要如下所示的Google驱动器URL。

  

https://drive.google.com/open?id=1t8rKbQKvWGBeb6VrhMLsM2SbxhvIda5r

是否有任何API可以实现相同的目标?

0 个答案:

没有答案