同じアプリで既に作成したフォルダにアクセスできます。私は 'com.google.android.gms:play-services-drive:9.0.0'ライブラリを使用しており、google drive sample on githubを参照しています。サンプルを使用してCreateFolderInFolderActivity.java私は既存のフォルダ内にフォルダを作成することができます。フォルダを作成する代わりに、既存のフォルダ内にファイルを作成する必要があります。android google drive sdkを使用してGoogleドライブのフォルダにファイルをアップロードする方法
public class CreateFileInsideFolderActivity extends BaseDemoActivity {
private static final String TAG = "CreateFileActivity";
@Override
public void onConnected(Bundle connectionHint) {
super.onConnected(connectionHint);
Drive.DriveApi
.fetchDriveId(getGoogleApiClient(), "0B_cMuo4-XwcAZ3IzSG1jajFlWk0")
.setResultCallback(idCallback);
}
final ResultCallback<DriveApi.DriveIdResult> idCallback = new ResultCallback<DriveApi.DriveIdResult>() {
@Override
public void onResult(DriveApi.DriveIdResult result) {
if (!result.getStatus().isSuccess()) {
showMessage("Cannot find DriveId. Are you authorized to view this file?");
return;
}
DriveId driveId = result.getDriveId();
//showMessage("driveid" + driveId.getResourceId());
final DriveFolder folder = driveId.asDriveFolder();
//
// How to upload a file to this folder
//
}
あなたが持っている問題についての詳細を提供する必要があります – pinoyyid
詳細を追加 –