Android google drive file change listener not working

后端 未结 1 1837
故里飘歌
故里飘歌 2021-01-13 20:32

I have registered the change listener to google drive file as follows-

DriveFile driveFile = Drive.DriveApi.getFile(mGoogleApiClient, mSelectedFileId);
drive         


        
1条回答
  •  一生所求
    2021-01-13 20:54

    I assume you mean change listener isn't called.

    Changes made on the web won't immediately be reflected on the device. It will happen the next time that the device finds out about updates. You can speed that up by interacting with the API, or calling requestSync.

    0 讨论(0)
提交回复
热议问题