我想从我的 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 ...