I want to download file from a server and show the progress in a notification progress bar as when using the DownloadManager class. I don't want to use the DownloadManager class because it only can save to external memory while I want my file to be saved internally. What to do ?
Asked
Active
Viewed 6,588 times
1
-
You could take some inspiration from this: http://blog.blundell-apps.com/tut-splashscreen-with-progress-bar/ – Blundell Jul 17 '12 at 09:21
1 Answers
0
I'd recommend using AsyncTask or ProgressDialog. Would either of these work?
Download a file with Android, and showing the progress in a ProgressDialog
-
Yes, I tried the link you gave, but I have a problem: I can not pull down the notification bar. (I used the asynctask method). – user1471575 Jul 17 '12 at 09:27
-
yes, it works. But I have a problem: i cannot pull down the notification bar – user1471575 Jul 17 '12 at 09:41