0

我想从我的 Android 应用程序中向文件和文件夹添加自定义属性。我找不到使用新的 Google Play Services Drive API 的任何方法。API中是否缺少此功能?使用“旧”驱动 SDK,我可以通过以下方式执行此操作:

private static Property insertProperty(Drive service, String fileId, String key, String value, String visibility) { Property newProperty = new Property();

newProperty.setKey(key);
newProperty.setValue(value);
newProperty.setVisibility(visibility);
try {
  return service.properties().insert(fileId, newProperty).execute();
} catch (IOException e) {
  System.out.println("An error occurred: " + e);
}
return null;

}

我想避免在我的应用程序中混合 Drive SDK 和 Google Play Services Drive API ...

4

1 回答 1

0

此时 Android Google Drive API 不支持自定义属性。

目前,这些是可通过 Android Google Drive API 获得的唯一元数据选项:

https://developer.android.com/reference/com/google/android/gms/drive/MetadataChangeSet.Builder.html

于 2014-05-30T19:31:12.547 回答