Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/206.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google drive Android SDK看不到使用web UI创建的文件_Android_Google Drive Api_Google Drive Android Api - Fatal编程技术网

Google drive Android SDK看不到使用web UI创建的文件

Google drive Android SDK看不到使用web UI创建的文件,android,google-drive-api,google-drive-android-api,Android,Google Drive Api,Google Drive Android Api,在Android应用程序中,我使用下面的代码列出文件夹的内容 Drive.DriveApi.getFolder(mGoogleApiClient, driveId).listChildren(mGoogleApiClient).setResultCallback(listChildrenResultCallback); 虽然这正确列出了我的应用程序上载的内容,但我看不到使用web UI创建的内容 这是预期的吗?GDAA(Google Drive Android Api)仅支持文件范围,即它只能

在Android应用程序中,我使用下面的代码列出文件夹的内容

Drive.DriveApi.getFolder(mGoogleApiClient, driveId).listChildren(mGoogleApiClient).setResultCallback(listChildrenResultCallback);
虽然这正确列出了我的应用程序上载的内容,但我看不到使用web UI创建的内容


这是预期的吗?

GDAA(Google Drive Android Api)仅支持文件范围,即它只能处理应用程序创建的对象(文件夹/文件)。如果您想访问由其他应用程序(web UI)创建的文件,则必须使用。请参阅。

可能链接到Damn,现在我必须使用REST api重做所有操作。。。谢谢你的明确回答。