1

我有一个 android 应用程序,它从谷歌驱动器读取电子表格并将其作为联系人列表显示给用户。它被设计成一个电话列表,您可以发送给您的团队成员。

https://play.google.com/store/apps/details?id=com.ctw.cloudpeepsfree

无论如何,要开始工作,所有 Google 驱动器文件名都需要以前缀“peep:”开头。我听说使用最新版本的 Google Drive API,我应该能够将我所有的应用程序文件放到一个只有我的应用程序可以读取的特殊文件夹中。我正在寻找有关此主题的一些示例代码或文章。谢谢...

找到这个博客:http: //googleappsdeveloper.blogspot.com/2013/04/more-ways-for-apps-to-write-to-drive.html

4

1 回答 1

0

您可以在您的情况下使用应用程序数据文件夹,但使用将无法列出您将其放在 appdata 文件夹中的文件:https ://developers.google.com/drive/appdata

为了将文件放在 appdata 文件夹中,只需将其父级设置为“appdata”:

File body = new File();
body.setTitle(title);
body.setDescription(description);
body.setMimeType(mimeType);
body.setParents(Arrays.asList(new ParentReference().setId("appdata"));

service.files().insert(body).execute();
于 2013-07-12T14:17:12.250 回答