3

新しい Google ドライブ API を使用して Google ドライブにファイルを作成する Android アプリ。DriveFile オブジェクトを正常に取得しています。

問題は、このファイルをアプリから共有する方法です。関連トピックへのリンク、特にコード サンプルを歓迎します。

4

2 に答える 2

1
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);
}
于 2014-06-27T09:55:00.150 に答える