使用新的Google Play服务驱动器API添加自定义属性

时间:2014-05-29 21:44:31

标签: google-play-services google-drive-android-api google-drive-api

我想在Android应用程序中为文件和文件夹添加自定义属性。我使用新的Google Play Services Drive API找不到任何方法。 API中缺少这个吗?使用“旧”Drive SDK我可以通过以下方式执行此操作:

private static Property insertProperty(       驱动器服务,String fileId,String key,String value,String visibility){     属性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 ...

1 个答案:

答案 0 :(得分:0)

目前Android Google Drive API不支持自定义属性。

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

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