0

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.

Reza Bigdeli
  • 1,142
  • 1
  • 12
  • 25

1 Answers1

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