I want to download a file using downloadManager but I don't want to show any notifications. I think the term for this is silent downloading. Any help would be appreciated.
Asked
Active
Viewed 2,179 times
1 Answers
1
Method 1:
You can use IntentService
for downloading files without any notification.
You can refer this link
Method :2
Also you can use BroadCastReceiver
Which is used to capture the Network state changing, Reboot, etc. You can start download from there.
Method 3:
Use AsynkTask
for downloading file at the background

Amsheer
- 7,046
- 8
- 47
- 81
-
Should I use downloadManager In the intentService? – Reza Bigdeli Apr 28 '15 at 10:28