Chào mọi người. Cho mình hỏi làm sao để trước khi chạy ‘UI chọn thư mục’ như trên hình này
Thì mình update ( refresh ) lại như thế này không ?
Mình làm như vậy dùng cho trường hợp người dùng xóa “SAO LƯU” thì có thể tạo thư mục mới, còn nếu chưa update thì nó vẫn upload file vào thư mục “SAO LƯU” đã xóa ở trong thùng rác.
Code để chạy ‘UI chọn thư mục’. Cám ơn mọi người
public void onResult(DriveContentsResult result) {
MetadataChangeSet meta = new MetadataChangeSet.Builder() .setMimeType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet") .setTitle("29-09-2016.xlsx") .build();
IntentSender intentSender = Drive.DriveApi .newCreateFileActivityBuilder() .setActivityStartFolder(DRIVE_ID_MYGARAGE) .setInitialMetadata(meta) .setInitialDriveContents(result.getDriveContents()) .build(mGoogleApiClient); }