Google Drive Android SDK:从哪里开始?

Google Drive Android SDK: where to start from?

我整天都在查看 Google Drive SDK for Android,

但是我有点迷茫

我需要在用户 Google Drive 帐户中制作文件夹和文件列表。

我认为这是一个简单、基本的标准功能,但也许不是...

你能帮帮我吗?

您有两种可能的方式:

我会说前者更容易入手。

  • 如果您决定使用 REST,您可以使用 GitHub demo here, that has both the REST and the GDAA 'CRUD' implementations (you just comment out the one you don't need). It also has some code to deal with the authentication / authorization which you need to do anything on Google Drive. See SO 28439129
  • 如果您决定使用 GDAA(您仍然需要完成授权),'official' 开始演示是 here and here

您肯定会 运行 遇到很多障碍,大部分解决方案都可以在标签 'google-drive-android-api' 下找到。

祝你好运。