SimpleCoder
SimpleCoder

Reputation: 1705

How to upload files on Google drive with progress bar in Android

I want to upload media files to g drive from my android app . First it should show all google accounts and on selecting any it should start uploading file or files with progress update . I tried to find over here and other forums but didnt get much to do it with progress bar . Can anyone provide me any reference sample code or link to do so. Thanks in advance.

Upvotes: 0

Views: 2761

Answers (1)

DKIT
DKIT

Reputation: 3481

What have you tried? If you want a progress bar only I would implement the AsyncTask as per the documentation here and in the onProgressUpdate method I would update the progress of the progress bar.

Possible duplicate: Upload progress listener not fired (Google drive API)

Upvotes: 1

Related Questions