この次の行を実行しようとしています
credential = GoogleAccountCredential.usingOAuth2(this, DriveScopes.DRIVE);
次のエラーが表示されます。
The method usingOAuth2(Context, Collection<String>) in the type GoogleAccountCredential is not applicable for the arguments (GoogleDriveProxeyActivity, String)
次に、コードを次のように変更しました。
credential = GoogleAccountCredential.usingOAuth2(this, Arrays.asList(DriveScopes.DRIVE.split(",")));
しかし、適切なタイプのパラメーターを\n送信するためのより簡単な方法はありますか?