新しい Google ドライブ API を使用して Google ドライブにファイルを作成する Android アプリ。DriveFile オブジェクトを正常に取得しています。
問題は、このファイルをアプリから共有する方法です。関連トピックへのリンク、特にコード サンプルを歓迎します。
新しい Google ドライブ API を使用して Google ドライブにファイルを作成する Android アプリ。DriveFile オブジェクトを正常に取得しています。
問題は、このファイルをアプリから共有する方法です。関連トピックへのリンク、特にコード サンプルを歓迎します。
Permission newPermission = new Permission();
newPermission.setValue(emailvalue);
newPermission.setType(type);
newPermission.setRole(role);
try {
service.permissions().insert(fid, newPermission).execute();
showToast("Done Shared successfully!!!!!!");
} catch (IOException e) {
System.out.println("An error occurred: " + e);
}